Create an organization scope
Create a new organization scope with the given data.
Body
Required
-
tenantId
string Maximum length is
21
. -
name
string Required 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 \
--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"
}