v51

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-0172165343.2 KB
Admin

Role List

List all roles

post/api/v1.admin.auth-role.list

Request body

limitinteger

Limit the number of returned items

iteratorstring nullable

The iterator returned from a prior invocation

Example request

{
  "iterator": "some_role_id"
}

Response

iteratorstring nullable
prev_iteratorstring nullable
doneboolean required

Example response

{
  "data": [
    {
      "id": "some_role_id",
      "policies": [
        "some_access_policy"
      ]
    }
  ]
}