Update organization scope
Update organization scope details by ID with the given data.
PATCH
/api/organization-scopes/{id}
curl \
--request PATCH 'https://[tenant_id].logto.app/api/organization-scopes/{id}' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"tenantId":"string","id":"string","name":"string","description":"string"}'
Request examples
{
"tenantId": "string",
"id": "string",
"name": "string",
"description": "string"
}
Response examples (200)
{
"tenantId": "string",
"id": "string",
"name": "string",
"description": "string"
}