Create an organization scope
Create a new organization scope with the given data.
Body Required
-
tenantId string
Maximum length is
21
. -
The name of the organization scope. It must be unique within the organization template.
Minimum length is
1
, maximum length is128
. -
description string | null
The description of the organization scope.
Maximum length is
256
.
POST /api/organization-scopes
curl \
-X POST https://[tenant_id].logto.app/api/organization-scopes \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"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"
}