Todo API

POST

  • A successful create or update returns response code 200 and the update todo.

POST projecten.viadesk.com/api/todo.json
form field “office” // the id of the office where the todo will be created or edited (required)
form field “id” // the id of the todo (required for editing existing todos)
form field “completed” // boolean, sets the completed status (optional)
form field “name” // name of todo (required for new todos)
form field “body” // description of the todo (optional)
form field “end” // due date (optional)
form field “attendee” // one or more users (optional)
form field “milestone” // id of the milestone (optional)

DELETE

  • The DELETE method allows you to delete a todo, if the user has the required permission.
  • A successful DELETE returns response code 200.

DELETE projecten.viadesk.com/api/todo.json?id=111756-7…