GET
/
statuses
List statuses
curl --request GET \
  --url https://core.ravenna.ai/api/statuses \
  --header 'x-ravenna-api-token: <api-key>'
{
  "statuses": [
    {
      "id": "<string>",
      "label": "<string>",
      "order": 123,
      "system": true,
      "requestTypes": [
        {
          "id": "<string>",
          "requestTypeId": "<string>"
        }
      ],
      "statusGroup": {
        "id": "<string>",
        "label": "<string>",
        "workspaceId": "<string>"
      },
      "statusGroupId": "<string>",
      "createdAt": "<string>",
      "updatedAt": "<string>"
    }
  ],
  "groups": [
    {
      "id": "<string>",
      "label": "<string>",
      "order": 123,
      "color": "<string>",
      "workspaceId": "<string>",
      "createdAt": "<string>",
      "updatedAt": "<string>"
    }
  ]
}

Authorizations

x-ravenna-api-token
string
header
required

Query Parameters

skip
number | null
Required range: x >= 1
offset
number | null
Required range: x >= 0
cursor
string | null
limit
number | null
default:100
Required range: 1 <= x <= 10000
set
string | null
sortBy
string | null
sortDirection
enum<string> | null
Available options:
asc,
desc
groupBy
string | null
groupDirection
enum<string> | null
Available options:
asc,
desc
workspaceId
string | null

Response

200
application/json

Successful response

The response is of type object.