Create an organization scope
Create a new organization scope with the given data.
POST
/api/organization-scopes
curl \
--request POST 'https://[tenant_id].logto.app/api/organization-scopes' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"tenantId":"string","name":"string","description":"string"}'
Request examples
{
"tenantId": "string",
"name": "string",
"description": "string"
}
Response examples (201)
{
"tenantId": "string",
"id": "string",
"name": "string",
"description": "string"
}