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-62dc-46b7-b75c-23184e661ccb",
"completed_timestamp": "2025-08-01 12:00:00",
"completed_by_staff_uuid": "123e4567-b396-4f0d-8518-231846db3d6b",
"assigned_to_staff_uuid": "123e4567-5405-46e9-a5e9-231845c227eb",
"uuid": "123e4567-b8d6-4a26-9f8f-23184bd0050b",
"edit_date": "2025-08-01 12:00:00",
"created_by_staff_uuid": "123e4567-7a46-422a-8413-23184417461b",
"create_date": "2025-08-01 12:00:00"
}Response
Success
Example response
{
"message": "OK"
}