PUT/tasks/{id}.json

Update a Task

Updates an existing task. See the list of options from "Add a task".


To update the custom fields, pass in the updated values of the custom fields this endpoint. Eg:

{
    "todo-item": {
        "customFields": [
            {
                "customFieldId": 68, 
                "value": "Jane Doe"
            }, 
            {
                "customFieldId": 75, 
                "value": "Finance"
            }
        ]
    }
}

To delete custom fields from a task pass an empty array for the customFields param. Eg:

{
    "todo-item": {
        "customFields": []
    }
}


Path Params

  • Name
    id
    Type
    string
    required
    Description

Body Params

    • Name
      todo-item
      Type
      object

    Responses

    • Code
      200
      Description
      200 Response

    Examples

    200 Response

    application/json
    {
      "STATUS": "OK"
    }