Tasks
Create a new Task
OAuth Scope
This endpoint requires the following OAuth scope manage_tasks.
Record UUID
UUID is optional for record creation. If no UUID is supplied, a UUID will be automatically generated for the new record and returned in the x-record-uuid response header.
post/task.json
Request body
Example request
{
"due_date": "YYYY-MM-DD",
"related_object_uuid": "123e4567-f9eb-41c1-a5fd-23312ab7338b",
"completed_timestamp": "2025-09-01 12:00:00",
"completed_by_staff_uuid": "123e4567-e042-433e-af65-23312650743b",
"assigned_to_staff_uuid": "123e4567-adeb-4ad5-822a-23312e91a59b",
"uuid": "123e4567-a073-4c0b-b873-233126e2173b",
"edit_date": "2025-09-01 12:00:00",
"created_by_staff_uuid": "123e4567-10fb-4bd7-89b3-23312b33259b",
"create_date": "2025-09-01 12:00:00"
}Response
Success
Example response
{
"message": "OK"
}