curl --request GET \
--url https://app.usequeue.com/api/v1/tasks/{task_id} \
--header 'Authorization: Bearer <token>'{
"success": true,
"task": {
"id": "abc123",
"title": "Follow up with client",
"description": "We need to confirm delivery status by Friday.",
"cover_url": "https://example.com/image.png",
"priority": "high",
"deadline": "2025-08-01T17:00:00Z",
"position": 3,
"created_at": "2025-07-25T14:21:00Z",
"updated_at": "2025-07-26T09:13:00Z",
"fields": {
"due_by": "Friday",
"client": "Acme Inc."
},
"sections": {
"general": {
"status": "In Review",
"assignee": "Jane"
}
}
}
}curl --request GET \
--url https://app.usequeue.com/api/v1/tasks/{task_id} \
--header 'Authorization: Bearer <token>'{
"success": true,
"task": {
"id": "abc123",
"title": "Follow up with client",
"description": "We need to confirm delivery status by Friday.",
"cover_url": "https://example.com/image.png",
"priority": "high",
"deadline": "2025-08-01T17:00:00Z",
"position": 3,
"created_at": "2025-07-25T14:21:00Z",
"updated_at": "2025-07-26T09:13:00Z",
"fields": {
"due_by": "Friday",
"client": "Acme Inc."
},
"sections": {
"general": {
"status": "In Review",
"assignee": "Jane"
}
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful response
true
Show child attributes
Unique token ID of the task
"abc123"
Title of the task
"Follow up with client"
Detailed description of the task
"We need to confirm delivery status by Friday."
Optional cover image URL
"https://example.com/image.png"
Priority level of the task
"high"
Deadline timestamp for the task
"2025-08-01T17:00:00Z"
Position within the column
3
Timestamp when the task was created
"2025-07-25T14:21:00Z"
Timestamp when the task was last updated
"2025-07-26T09:13:00Z"
Custom field values (key-value pairs)
{ "due_by": "Friday", "client": "Acme Inc." }Section-based field groupings (keyed by section ID)
{
"general": { "status": "In Review", "assignee": "Jane" }
}