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-2491-4411-a45a-231fe44158cb",
"completed_timestamp": "2025-08-01 12:00:00",
"completed_by_staff_uuid": "123e4567-829e-4d2f-bc11-231fea37316b",
"assigned_to_staff_uuid": "123e4567-3bd5-4f22-ae68-231febb0903b",
"uuid": "123e4567-0d3f-49f2-a0d3-231fe8fb030b",
"edit_date": "2025-08-01 12:00:00",
"created_by_staff_uuid": "123e4567-0f22-4648-a7e4-231fedb357eb",
"create_date": "2025-08-01 12:00:00"
}Response
Success
Example response
{
"message": "OK"
}