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-6d18-4f2d-8d67-233c6a55199b",
"completed_timestamp": "2025-09-01 12:00:00",
"completed_by_staff_uuid": "123e4567-c53e-4c36-90da-233c6fcd9bbb",
"assigned_to_staff_uuid": "123e4567-f6c0-494e-8de3-233c69b92a0b",
"uuid": "123e4567-8366-4599-8734-233c683855cb",
"created_by_staff_uuid": "123e4567-65fa-4e45-96c8-233c6f92314b",
"create_date": "2025-09-01 12:00:00"
}Response
Success
Example response
{
"message": "OK"
}