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-638f-4d1e-888c-2342221dcd6b",
"completed_timestamp": "2025-09-01 12:00:00",
"completed_by_staff_uuid": "123e4567-0598-49ec-9e29-2342202659cb",
"assigned_to_staff_uuid": "123e4567-6b2b-4120-b3c1-234221cf6b7b",
"uuid": "123e4567-1dec-4d9d-973c-2342288f892b",
"created_by_staff_uuid": "123e4567-8dee-42f5-81ec-234228984b8b",
"create_date": "2025-09-01 12:00:00"
}Response
Success
Example response
{
"message": "OK"
}