Update a task

update(id, updatedAttributes)

const myClient // an authorized client instance
myClient.task.update(123456789, { content: "Updated task"}) // The task is updated in the servers

Last updated