Tasks

Update a task

Update an existing task (title, description, status, assignee, approver, frequency, department, reviewDate)

patch/v1/tasks/{taskId}

Path parameters

taskIdstring required
Example:tsk_abc123def456

Unique task identifier

Request body

titlestring

Task title

descriptionstring

Task description

status'todo' | 'in_progress' | 'in_review' | 'done' | 'not_relevant' | 'failed'
assigneeIdstring nullable

Assignee member ID, or null to unassign

approverIdstring nullable

Approver member ID, or null to unassign

frequency'daily' | 'weekly' | 'monthly' | 'quarterly' | 'yearly'
department'none' | 'admin' | 'gov' | 'hr' | 'it' | 'itsm' | 'qms'
reviewDatestring date-time

Example request

{
  "title": "Review access controls",
  "description": "Review and update access control policies",
  "status": "in_progress",
  "assigneeId": "mem_abc123",
  "approverId": "mem_abc123",
  "frequency": "monthly",
  "department": "it",
  "reviewDate": "2025-01-01T00:00:00.000Z"
}

Response

Task updated successfully

idstring required

Unique identifier for the task

titlestring required

Task title

descriptionstring

Task description

status'todo' | 'in_progress' | 'done' | 'blocked' required

Task status

createdAtstring date-time required

Task creation timestamp

updatedAtstring date-time required

Task last update timestamp

taskTemplateIdobject nullable

Task template ID

Example response

{
  "id": "tsk_abc123def456",
  "title": "Implement user authentication",
  "description": "Add OAuth 2.0 authentication to the platform",
  "status": "in_progress",
  "createdAt": "2024-01-15T10:30:00Z",
  "updatedAt": "2024-01-15T10:30:00Z"
}

Changes