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-6dce-409a-aa3a-231d2a7b375b",
"completed_timestamp": "2025-08-01 12:00:00",
"completed_by_staff_uuid": "123e4567-4b6b-47ec-8d7e-231d2b26271b",
"assigned_to_staff_uuid": "123e4567-062d-4647-a8b5-231d22b42eeb",
"uuid": "123e4567-8aab-4141-a638-231d2209298b",
"edit_date": "2025-08-01 12:00:00",
"created_by_staff_uuid": "123e4567-56b7-4fb5-9eb9-231d29d22aeb",
"create_date": "2025-08-01 12:00:00"
}Response
Success
Example response
{
"message": "OK"
}