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-eb7b-44e3-9cdd-231cf44467cb",
"completed_timestamp": "2025-08-01 12:00:00",
"completed_by_staff_uuid": "123e4567-2feb-409a-9047-231cfef135eb",
"assigned_to_staff_uuid": "123e4567-56e3-4a55-ae3c-231cf6e604cb",
"uuid": "123e4567-5e18-478e-8af2-231cf2a37abb",
"edit_date": "2025-08-01 12:00:00",
"created_by_staff_uuid": "123e4567-8c2e-480f-b4cd-231cf4d253eb",
"create_date": "2025-08-01 12:00:00"
}Response
Success
Example response
{
"message": "OK"
}