Skip to main content
GET
/
roles
Retrieve role collection
curl --request GET \
  --url https://incoming.qomon.app/roles \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "count": 123,
    "roles": [
      {
        "color": "<string>",
        "id": 1,
        "mobile": true,
        "name": "<string>",
        "order": 1,
        "web": true
      }
    ]
  },
  "status": "<string>"
}

Authorizations

Authorization
string
header
required

OAuth2 access token. Pass the token in the Authorization header as Bearer <token>. The token is looked up in Redis to resolve the caller identity.

Response

OK

data
object
required
status
string
required

Operation result.

Example:

"success"

Last modified on June 16, 2026