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-d808-459a-8f7e-23eb2bfdf72b",
"completed_timestamp": "2026-03-01 12:00:00",
"completed_by_staff_uuid": "123e4567-dfd1-439b-b70b-23eb2516b88b",
"assigned_to_staff_uuid": "123e4567-4a05-45e9-b2aa-23eb2c3ee6fb",
"uuid": "123e4567-3b4a-4356-b727-23eb2947fc3b",
"created_by_staff_uuid": "123e4567-5d15-489b-8b1c-23eb2618a76b",
"create_date": "2026-03-01 12:00:00"
}Response
Success
Example response
{
"message": "OK"
}