Update the global configuration object for Logto Console. This method performs a partial update.
PATCH
/api/configs/admin-console
curl \
--request PATCH 'https://[tenant_id].logto.app/api/configs/admin-console' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{
"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
}
}