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-5148-4881-aeee-233c6c106d4b",
"completed_timestamp": "2025-09-01 12:00:00",
"completed_by_staff_uuid": "123e4567-5131-43dc-b884-233c638bb17b",
"assigned_to_staff_uuid": "123e4567-9dbd-44b6-b214-233c662a479b",
"uuid": "123e4567-47ed-423a-ae5b-233c6e45790b",
"created_by_staff_uuid": "123e4567-2a1a-4b43-ac7d-233c61d0661b",
"create_date": "2025-09-01 12:00:00"
}Response
Success
Example response
{
"message": "OK"
}