Skip to main content
PATCH
/
tasks
/
{task_id}
Update task
curl --request PATCH \
  --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

Query Parameters

title
string

Title of the task

description
string

Description of the task

priority
enum<string>

Priority level of the task

Available options:
Low,
Medium,
High
deadline
string<date-time>

Deadline timestamp (ISO 8601)

position
number

Position of the task in its column

cover_url
string<uri>

Optional cover image URL

Response

200 - application/json

Successful response

success
boolean
Example:

true

task
object