Skip to main content
GET
/
api
/
queues
/
v1
Get Queues
curl --request GET \
  --url https://{instance}.domo.com/api/queues/v1 \
  --header 'X-DOMO-Developer-Token: <api-key>'
[
  {
    "id": "168ecd84-4a15-45f6-89d9-021fbbce0481",
    "name": "Review Airplane Part Action Items",
    "description": "Human review of AI generated recommendations for QA process improvements based on product defects in manufacturing QA.",
    "active": true,
    "taskLevelFiltersEnabled": true,
    "taskLevelFilters": "<unknown>",
    "owner": "8811501",
    "createdBy": "8811501",
    "createdOn": "2023-10-18T14:48:23.314Z",
    "updatedBy": "8811501",
    "updatedOn": "2023-10-18T14:48:23.314Z"
  }
]

Authorizations

X-DOMO-Developer-Token
string
header
required

Domo Developer Token for authentication

Query Parameters

combineAttributes
boolean
default:true
archived
boolean
default:false

Response

List of all queue objects the user has access to

id
string

Unique identifier for the queue

Example:

"168ecd84-4a15-45f6-89d9-021fbbce0481"

name
string

Name of the queue

Example:

"Review Airplane Part Action Items"

description
string

Description of the queue

Example:

"Human review of AI generated recommendations for QA process improvements based on product defects in manufacturing QA."

active
boolean

Whether the queue is active

Example:

true

taskLevelFiltersEnabled
boolean

Whether task level filters are enabled

Example:

true

taskLevelFilters
any | null

Task level filters configuration

owner
string

User ID of the queue owner

Example:

"8811501"

createdBy
string

User ID who created the queue

Example:

"8811501"

createdOn
string<date-time>

Timestamp when the queue was created

Example:

"2023-10-18T14:48:23.314Z"

updatedBy
string

User ID who last updated the queue

Example:

"8811501"

updatedOn
string<date-time>

Timestamp when the queue was last updated

Example:

"2023-10-18T14:48:23.314Z"