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-6467-4eca-8683-2320af34cfbb",
"completed_timestamp": "2025-08-01 12:00:00",
"completed_by_staff_uuid": "123e4567-eb36-4613-9b22-2320a66f422b",
"assigned_to_staff_uuid": "123e4567-cb63-4275-804b-2320a9b8ec1b",
"uuid": "123e4567-e912-4818-95a7-2320af480abb",
"edit_date": "2025-08-01 12:00:00",
"created_by_staff_uuid": "123e4567-fc53-43a0-bce7-2320ac9aa34b",
"create_date": "2025-08-01 12:00:00"
}Response
Success
Example response
{
"message": "OK"
}