Get the application level sign-in experience

GET /api/applications/{applicationId}/sign-in-experience

Get application level sign-in experience for a given application.

  • Only branding properties and terms links customization is supported for now.

  • Only third-party applications can have the sign-in experience customization for now.

Path parameters

Responses

  • 200 application/json

    Returns the application's application level sign-in experience.

    Hide response attributes Show response attributes object
  • 400

    Bad Request

  • 401

    Unauthorized

  • 403

    Forbidden

  • 404

    The application does not exist or the application level sign-in experience does not exist.

GET /api/applications/{applicationId}/sign-in-experience
curl \
 -X GET https://[tenant_id].logto.app/api/applications/{applicationId}/sign-in-experience
Response examples (200)
{
  "applicationId": "string",
  "branding": {
    "logoUrl": "string",
    "darkLogoUrl": "string",
    "favicon": "string"
  },
  "termsOfUseUrl": "string",
  "privacyPolicyUrl": "string",
  "displayName": "string"
}