Skip to main content
GET
/
tasks
/
{task_id}
Delete task
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"
      }
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

task_id
string
required

Response

200 - application/json

Successful response

success
boolean
Example:

true

task
object