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-ce5b-4029-ac72-2313fb48337b",
"completed_timestamp": "2025-08-01 12:00:00",
"completed_by_staff_uuid": "123e4567-7584-4e83-9698-2313f0ffa11b",
"assigned_to_staff_uuid": "123e4567-fe9b-4c23-a3dd-2313f3e3351b",
"uuid": "123e4567-d1b9-48fa-9e50-2313f07399ab",
"edit_date": "2025-08-01 12:00:00",
"created_by_staff_uuid": "123e4567-f4ef-4822-ba59-2313fdb3ec5b",
"create_date": "2025-08-01 12:00:00"
}Response
Success
Example response
{
"message": "OK"
}