cURL
curl --request PUT \ --url https://api.example.com/api/public/tasks/{id} \ --header 'Content-Type: application/json' \ --data ' { "title": "<string>", "description": "<string>", "dueDate": "<string>", "dueTime": "<string>", "timezone": "<string>", "responsibleIds": [ "<string>" ], "aiContactId": "<string>", "aiCustomerId": "<string>", "priority": "0", "associateToCalendar": false, "newStatusPosition": 123, "newStatusName": "<string>" } '
{}
Updates an existing task by ID. Only the fields provided in the request body will be updated. All fields are optional for updates.
The UUID of the task to update
1
0
2
Task updated successfully
The response is of type object.
object
Was this page helpful?