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-319d-4513-9895-23b2e61c153b",
"completed_timestamp": "2026-01-01 12:00:00",
"completed_by_staff_uuid": "123e4567-4d6f-454d-889c-23b2e8a0913b",
"assigned_to_staff_uuid": "123e4567-56ed-424c-9b55-23b2e4acfeeb",
"uuid": "123e4567-9592-4bf3-8fea-23b2e4dfaffb",
"created_by_staff_uuid": "123e4567-6ba6-4b01-baac-23b2e517055b",
"create_date": "2026-01-01 12:00:00"
}Response
Success - The record was updated successfully
Example response
{
"message": "OK"
}