Get organization role

GET /api/organization-roles/{id}

Get organization role details by ID.

Path parameters

  • id string Required

    The unique identifier of the organization role.

Responses

  • 200 application/json

    Details of the organization role.

    Hide response attributes Show response attributes object
    • tenantId string Required

      Maximum length is 21.

    • id string Required

      Minimum length is 1, maximum length is 21.

    • name string Required

      Minimum length is 1, maximum length is 128.

    • description string | null Required

      Maximum length is 256.

    • type string Required

      Values are User or MachineToMachine.

  • Bad Request

  • Unauthorized

  • Forbidden

  • Not Found

GET /api/organization-roles/{id}
curl \
 -X GET https://[tenant_id].logto.app/api/organization-roles/{id} \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "tenantId": "string",
  "id": "string",
  "name": "string",
  "description": "string",
  "type": "User"
}