v1

latestOpenAPI 3.1.02026-07-1451089.2 KB

Update a task

This call lets you edit a specific task.

The post data for this request must be a well formed JSON object. The properties of the JSON object determine what properties of the task get updated. The following are the allowable properties for that JSON object. All other properties will be ignored.

post/tasks/{taskKey}

Path parameters

taskKeystring required

Task key

Request body

textstring

Updated task description

dueDateinteger

Updated dueDate (in MS since epoch)

statusstring

Either DONE or NOT_DONE

Response

200

boxKeystring
pipelineKeystring
creatorKeystring
creationDateinteger
lastStatusChangeDateinteger
textstring
statusstring
keystring
lastSavedTimestampinteger

Example response

{
  "boxKey": "agxzfm1haJq3iOsIDA",
  "pipelineKey": "agxzfm1hirZaXCgw",
  "creatorKey": "agxzfm1hagLzluZUKDA",
  "creationDate": 1504139600683,
  "lastStatusChangeDate": 1504139600683,
  "text": "Walk 500 miles",
  "status": "DONE",
  "assignedToSharingEntries": [
    {
      "displayName": "Becca S",
      "fullName": "Becca Saines",
      "userKey": "agxzfm1CAgLzluZUKDA"
    }
  ],
  "key": "agxzfmWxmPK9xZsKDA",
  "lastSavedTimestamp": 1504199083804
}