Skip to main content
GET
/
v2
/
annotation_queues
/
{queue_id}
Get Annotation Queue
curl --request GET \
  --url https://api.galileo.ai/v2/annotation_queues/{queue_id} \
  --header 'Splunk-AO-API-Key: <api-key>'
{
  "id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "created_by_user": {
    "id": "<string>",
    "email": "<string>",
    "first_name": "<string>",
    "last_name": "<string>"
  },
  "permissions": [],
  "num_log_records": 0,
  "num_annotators": 0,
  "num_users": 0,
  "num_templates": 0,
  "num_logs_annotated": {},
  "progress": {},
  "overall_progress": 123,
  "templates": [
    {
      "name": "<string>",
      "include_explanation": true,
      "constraints": {
        "annotation_type": "<string>"
      },
      "id": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "created_by": "<string>",
      "position": 123,
      "usage_count": 123,
      "criteria": "<string>"
    }
  ]
}

Authorizations

Splunk-AO-API-Key
string
header
required

Path Parameters

queue_id
string<uuid4>
required

Response

Successful Response

id
string<uuid4>
required
name
string
required
description
string | null
required
created_at
string<date-time>
required
updated_at
string<date-time>
required
created_by_user
UserInfo · object
required

A user's basic information, used for display purposes.

permissions
Permission · object[]
num_log_records
integer
default:0
num_annotators
integer
default:0
num_users
integer
default:0
num_templates
integer
default:0
num_logs_annotated
Num Logs Annotated · object
progress
Progress · object
overall_progress
number | null
templates
AnnotationTemplateDB · object[]