Update admin console config

PATCH /api/configs/admin-console

Update the global configuration object for Logto Console. This method performs a partial update.

application/json

Body Required

Responses

PATCH /api/configs/admin-console
curl \
 -X PATCH https://[tenant_id].logto.app/api/configs/admin-console \
 -H "Content-Type: application/json" \
 -d '{"signInExperienceCustomized":true,"organizationCreated":true,"developmentTenantMigrationNotification":{"isPaidTenant":true,"tag":"string","readAt":42.0},"checkedChargeNotification":{"token":true,"apiResource":true,"machineToMachineApp":true,"tenantMember":true}}'
Request example
{
  "signInExperienceCustomized": true,
  "organizationCreated": true,
  "developmentTenantMigrationNotification": {
    "isPaidTenant": true,
    "tag": "string",
    "readAt": 42.0
  },
  "checkedChargeNotification": {
    "token": true,
    "apiResource": true,
    "machineToMachineApp": true,
    "tenantMember": true
  }
}
Response examples (200)
{
  "signInExperienceCustomized": true,
  "organizationCreated": true,
  "developmentTenantMigrationNotification": {
    "isPaidTenant": true,
    "tag": "string",
    "readAt": 42.0
  },
  "checkedChargeNotification": {
    "token": true,
    "apiResource": true,
    "machineToMachineApp": true,
    "tenantMember": true
  }
}