Queues

Get a list of queues for your organizationDeprecated

SecurityApiKeyAuth or BearerAuth
Responses
200

A list of queues for the organization

get/v1/queues
Request samples
Response samples
application/json
{
  • "data": [
    • {
      • "id": "string",
      • "name": "string",
      • "is_default": true,
      • "priority": 0
      }
    ],
  • "paging": {
    • "cursors": {
      • "after": "string",
      • "before": "string"
      },
    • "next_page": "string",
    • "prev_page": "string"
    }
}

Get a queue by idDeprecated

SecurityApiKeyAuth or BearerAuth
Request
path Parameters
id
required
string
Responses
200

A successful response with a queue

404

The queue was not found

get/v1/queues/{id}
Request samples
Response samples
application/json
{
  • "data": {
    • "id": "string",
    • "name": "string",
    • "is_default": true,
    • "priority": 0
    }
}