Skip to content

Update a task status

POST
/tasks/{taskId}/status

Updates a task status

Parameters

Path Parameters

taskId
required

Request Body required

object
data
object
type
string
attributes
object
status

Status of the task

string
Allowed values: TODO INPROGRESS INREVIEW DONE

Responses

200

Task

object
data
object
type
string
id
string
attributes
object
name

Name of the task

string
description

Rich-text description of the task

string
status

Status of the task

string
Allowed values: TODO INPROGRESS INREVIEW DONE
dueDate

Due date of the task as an integer representing milliseconds since the Unix epoch

integer format: int64
isPriority

Whether the task is marked as a priority

boolean
createdDate

Created date of a task as an integer representing milliseconds since the Unix epoch

integer format: int64
tags

A list of label/value tags associated with the matter as an array of object .

Array<object>
object
label

The label of the tag (e.g., “priority”, “status”, “type”, “value”)

string
value

An optional value to the label of the tag (e.g., “high”, “open”, “ACC”, “$3,000”)

string
assignees

A list of assignees as userIds

Array<string>
reviewers

A list of reviewers as userIds

Array<string>
matterId

The matterId the task is associated with

string
matterName

The matter name the task is associated with

string
milestoneId

The milestoneId the task is associated with

string
milestoneName

The milestone name the task is associated with

string