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-e8a3-474e-9194-230c4ac6adfb",
"completed_timestamp": "2025-07-01 12:00:00",
"completed_by_staff_uuid": "123e4567-7aba-4a7c-802d-230c4d92a69b",
"assigned_to_staff_uuid": "123e4567-44ae-4c14-99da-230c44c043bb",
"uuid": "123e4567-6585-48e6-9d12-230c4b0c0d0b",
"edit_date": "2025-07-01 12:00:00",
"created_by_staff_uuid": "123e4567-f422-4e06-ab67-230c4e592d5b",
"create_date": "2025-07-01 12:00:00"
}Response
Success
Example response
{
"message": "OK"
}