Get full sign-in experience

GET /api/.well-known/sign-in-exp

Get the full sign-in experience configuration.

Responses

GET /api/.well-known/sign-in-exp
curl \
 -X GET https://[tenant_id].logto.app/api/.well-known/sign-in-exp
Response examples (200)
{
  "id": "string",
  "color": {
    "primaryColor": "string",
    "isDarkModeEnabled": true,
    "darkPrimaryColor": "string"
  },
  "branding": {
    "logoUrl": "string",
    "darkLogoUrl": "string",
    "favicon": "string"
  },
  "languageInfo": {
    "autoDetect": true,
    "fallbackLanguage": "af-ZA"
  },
  "termsOfUseUrl": "string",
  "privacyPolicyUrl": "string",
  "signIn": {
    "methods": [
      {
        "identifier": "username",
        "password": true,
        "verificationCode": true,
        "isPasswordPrimary": true
      }
    ]
  },
  "signUp": {
    "identifiers": [
      "username"
    ],
    "password": true,
    "verify": true
  },
  "socialSignInConnectorTargets": [
    "string"
  ],
  "signInMode": "SignIn",
  "customCss": "string",
  "customContent": {
    "key": "string"
  },
  "passwordPolicy": {
    "length": {
      "min": 8,
      "max": 256
    },
    "characterTypes": {
      "min": 1
    },
    "rejects": {
      "pwned": true,
      "repetitionAndSequence": true,
      "userInfo": true,
      "words": []
    }
  },
  "mfa": {
    "factors": [
      "Totp"
    ],
    "policy": "UserControlled"
  },
  "singleSignOnEnabled": true,
  "socialConnectors": [
    {
      "id": "string",
      "target": "string",
      "name": {},
      "description": {},
      "logo": "string",
      "logoDark": "string",
      "readme": "string",
      "configTemplate": "string",
      "formItems": [
        {
          "type": "string",
          "selectItems": [
            {
              "value": "string",
              "title": "string"
            }
          ],
          "key": "string",
          "label": "string",
          "placeholder": "string",
          "required": true,
          "showConditions": [
            {
              "targetKey": "string"
            }
          ],
          "description": "string",
          "tooltip": "string",
          "isConfidential": true
        }
      ],
      "platform": "Native",
      "isStandard": true
    }
  ],
  "ssoConnectors": [
    {
      "id": "string",
      "connectorName": "string",
      "logo": "string",
      "darkLogo": "string"
    }
  ],
  "forgotPassword": {
    "phone": true,
    "email": true
  },
  "isDevelopmentTenant": true
}