Update admin console config
Update the global configuration object for Logto Console. This method performs a partial update.
Body Required
-
signInExperienceCustomized boolean
-
organizationCreated boolean
-
Additional properties are allowed.
-
checkedChargeNotification object
Additional properties are allowed.
PATCH /api/configs/admin-console
curl \
-X PATCH https://[tenant_id].logto.app/api/configs/admin-console \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-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 examples
{
"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
}
}