v1

latestOpenAPI 3.0.0Proprietary2026-08-062711471.0 MB
User Tasks

Uncomplete a user task

Clears the completed state of a task. Requires a USER API key.

post/public/v1/tasks/{taskId}/uncomplete

Path parameters

taskIdnumber nullable
Example:101

Response

Reopened task

idnumber required
contentstring required
due_datestring nullable
completedboolean required
completed_atstring nullable
created_atstring required
updated_atstring required

Example response

{
  "id": 101,
  "content": "Email David Booth about Q3 renewal",
  "due_date": "2026-06-25T00:00:00Z",
  "created_at": "2026-06-01T12:00:00Z",
  "updated_at": "2026-06-01T12:00:00Z",
  "created_by": {
    "id": 42,
    "name": "Alvaro Vargas",
    "email": "alvaro@example.com"
  },
  "completed_by": {
    "id": 42,
    "name": "Alvaro Vargas",
    "email": "alvaro@example.com"
  },
  "assignees": [
    {
      "id": 42,
      "name": "Alvaro Vargas",
      "email": "alvaro@example.com"
    }
  ],
  "related": {
    "object_name": "companies",
    "object_label": "Companies",
    "row_id": "abc123"
  }
}