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-b42e-4aa8-a5b6-234d513f00bb",
"completed_timestamp": "2025-09-01 12:00:00",
"completed_by_staff_uuid": "123e4567-cd7a-4e83-b004-234d548dfe3b",
"assigned_to_staff_uuid": "123e4567-659d-4ae1-a8d2-234d5979ce1b",
"uuid": "123e4567-36a4-4a8f-8d07-234d5fcf8d0b",
"created_by_staff_uuid": "123e4567-2a0c-433e-b82e-234d5da67b9b",
"create_date": "2025-09-01 12:00:00"
}Response
Success - The record was updated successfully
Example response
{
"message": "OK"
}