Create an organization role
Create a new organization role with the given data.
Body Required
-
tenantId string
Maximum length is
21
. -
The name of the organization role. It must be unique within the organization template.
Minimum length is
1
, maximum length is128
. -
description string | null
The description of the organization role.
Maximum length is
256
. -
type string
Values are
User
orMachineToMachine
. -
An array of organization scope IDs to be assigned to the organization role.
Default value is
[]
(empty). -
An array of resource scope IDs to be assigned to the organization role.
Default value is
[]
(empty).
POST /api/organization-roles
curl \
-X POST https://[tenant_id].logto.app/api/organization-roles \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"tenantId":"string","name":"string","description":"string","type":"User","organizationScopeIds":[],"resourceScopeIds":[]}'
Request examples
{
"tenantId": "string",
"name": "string",
"description": "string",
"type": "User",
"organizationScopeIds": [],
"resourceScopeIds": []
}
Response examples (201)
{
"tenantId": "string",
"id": "string",
"name": "string",
"description": "string",
"type": "User"
}