Get organization application roles

GET /api/organizations/{id}/applications/{applicationId}/roles

Get roles associated with the application in the organization.

Path parameters

  • id string Required

    The unique identifier of the organization.

  • applicationId string Required

    The unique identifier of the application.

Query parameters

  • page integer

    Page number (starts from 1).

    Minimum value is 1. Default value is 1.

  • page_size integer

    Entries per page.

    Minimum value is 1. Default value is 20.

Responses

  • 200 application/json

    A list of roles.

    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

  • Unprocessable Content

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