Tasks

Create a new task

post/tasks

Request body

descriptionstring required

The task description

dueDatestring date nullable

The due date in yyyy-mm-dd format

jobIdnumber nullable

Link this task to a job. Cannot be changed after creation.

assignedEmployeeIdsnumber[]

Employee IDs to assign to this task

Example request

{
  "dueDate": "2025-06-30",
  "jobId": 123,
  "assignedEmployeeIds": [
    20,
    23
  ]
}

Response

Resource created successfully

resultstring required

Changes