Skip to main content
PUT
/
v1
/
queues
/
{queue_id}
Update an annotation queue
curl --request PUT \
  --url https://api.dp1.us.honeyhive.ai/v1/queues/{queue_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "enabled": true,
  "add_event_ids": [
    "<string>"
  ],
  "remove_event_ids": [
    "<string>"
  ]
}
'
{
  "queue": {
    "name": "<string>",
    "description": "<string>",
    "filters": {
      "filterArray": [
        {
          "field": "<string>",
          "operator": "exists",
          "value": "<string>",
          "type": "string"
        }
      ]
    },
    "enabled": true,
    "id": "<string>",
    "scope_id": "<string>",
    "scope_type": "system",
    "is_active": true,
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  },
  "message": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.honeyhive.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

queue_id
string
required

Annotation queue ID

Body

application/json
id
string
required
Minimum string length: 1
name
string
Maximum string length: 200
description
string
Maximum string length: 1000
filters
object
enabled
boolean
add_event_ids
string[]
remove_event_ids
string[]

Response

Queue updated successfully

queue
object
required
message
string
required