Skip to main content
GET
/
statuses
/
{id}
Get status by id
curl --request GET \
  --url https://core.ravenna.ai/api/statuses/{id} \
  --header 'x-ravenna-api-token: <api-key>'
{
  "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>"
}

Authorizations

x-ravenna-api-token
string
header
required

Path Parameters

id
string
required

Response

Successful response

id
string
required
label
string
required
order
number
required
system
boolean
required
requestTypes
object[]
required
statusGroup
object
required
statusGroupId
string
required
createdAt
string
required
updatedAt
string
required
I