Get admin console config

GET /api/configs/admin-console

Get the global configuration object for Logto Console.

Responses

  • 200 application/json

    The configuration object.

    Hide response attributes Show response attributes object
    • signInExperienceCustomized boolean Required
    • organizationCreated boolean Required
    • developmentTenantMigrationNotification object
      Hide developmentTenantMigrationNotification attributes Show developmentTenantMigrationNotification attributes object
      • isPaidTenant boolean Required
      • tag string Required
      • readAt number
    • checkedChargeNotification object
      Hide checkedChargeNotification attributes Show checkedChargeNotification attributes object
      • token boolean
      • apiResource boolean
      • machineToMachineApp boolean
      • tenantMember boolean
  • 401

    Unauthorized

  • 403

    Forbidden

  • 404

    Configuration not found.

GET /api/configs/admin-console
curl \
 --request GET 'https://[tenant_id].logto.app/api/configs/admin-console' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "signInExperienceCustomized": true,
  "organizationCreated": true,
  "developmentTenantMigrationNotification": {
    "isPaidTenant": true,
    "tag": "string",
    "readAt": 42.0
  },
  "checkedChargeNotification": {
    "token": true,
    "apiResource": true,
    "machineToMachineApp": true,
    "tenantMember": true
  }
}