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-fb55-436e-96c2-231b25d981db",
"completed_timestamp": "2025-08-01 12:00:00",
"completed_by_staff_uuid": "123e4567-8259-4239-aab4-231b2eb9dffb",
"assigned_to_staff_uuid": "123e4567-71d8-4f1a-bbfd-231b2abf39fb",
"uuid": "123e4567-03ec-4b16-98c9-231b2fc7c30b",
"edit_date": "2025-08-01 12:00:00",
"created_by_staff_uuid": "123e4567-d3ea-42f4-842d-231b299f22db",
"create_date": "2025-08-01 12:00:00"
}Response
Success
Example response
{
"message": "OK"
}