Tasks
Update a Task
OAuth Scope
This endpoint requires the following OAuth scope manage_tasks.
post/task/{uuid}.json
Path parameters
uuidstring uuid required
UUID of the Task
Request body
Example request
{
"due_date": "YYYY-MM-DD",
"related_object_uuid": "123e4567-ae1e-4e5e-8828-234678de3d8b",
"completed_timestamp": "2025-09-01 12:00:00",
"completed_by_staff_uuid": "123e4567-c54f-4f1a-a5d1-23467148077b",
"assigned_to_staff_uuid": "123e4567-f5e2-4516-bb9a-234677f7e7fb",
"uuid": "123e4567-909a-418f-be26-23467997e05b",
"created_by_staff_uuid": "123e4567-1917-4694-a7c9-23467aaefa1b",
"create_date": "2025-09-01 12:00:00"
}Response
Success - The record was updated successfully
Example response
{
"message": "OK"
}