GET
/
queues
curl --request GET \
  --url https://core.api.ravennahq.com/api/queues \
  --header 'x-ravenna-api-token: <api-key>'
{
  "nextCursor": "<string>",
  "totalCount": 123,
  "items": [
    {
      "id": "<string>",
      "name": "<string>",
      "workspaceId": "<string>",
      "workspace": {
        "id": "<string>",
        "slug": "<string>"
      },
      "prefix": "<string>",
      "emoji": "<string>",
      "system": true,
      "settings": {
        "id": "<string>",
        "aiEnabled": true,
        "respondOnMessage": "<string>",
        "respondOnMention": true,
        "allowInboundEmails": true,
        "autoCreateTickets": true,
        "autoClassify": true,
        "autoTag": true,
        "enableUserActions": true,
        "enableCSAT": true,
        "enableEmojiUpdates": true,
        "sendAllTicketToTriageChannel": true,
        "enableGranularSlackNotifications": true,
        "allowGuestUsers": true,
        "silentMode": true,
        "whitelistedInboundEmails": [
          "<string>"
        ],
        "whitelistedInboundDomains": [
          "<string>"
        ]
      },
      "slackChannels": [
        {
          "id": "<string>"
        }
      ],
      "requestTypes": [
        {
          "id": "<string>"
        }
      ],
      "autoAssignees": [
        {
          "id": "<string>"
        }
      ],
      "_count": {
        "tickets": 123
      },
      "createdAt": "<string>",
      "updatedAt": "<string>",
      "deletedAt": "<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

Response

200
application/json

Successful response

The response is of type object.