Get roles for user

GET /api/users/{userId}/roles

Get API resource roles assigned to the user with pagination.

Path parameters

  • userId string Required

    The unique identifier of the user.

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

    An array of API resource roles assigned to the user.

    Hide response attributes Show response attributes object
    • id string Required

      Minimum length is 1, maximum length is 21.

    • name string Required

      Minimum length is 1, maximum length is 128.

    • description string Required

      Minimum length is 1, maximum length is 128.

    • type string Required

      Values are User or MachineToMachine.

  • 400

    Bad Request

  • 401

    Unauthorized

  • 403

    Forbidden

  • 404

    Not Found

GET /api/users/{userId}/roles
curl \
 -X GET https://[tenant_id].logto.app/api/users/{userId}/roles
Response examples (200)
[
  {
    "id": "string",
    "name": "string",
    "description": "string",
    "type": "User"
  }
]