Update Recurring Task
PUT/locations/:locationId/recurring-tasks/:id
Update Recurring Task
Request
Version stringrequired
API Version
Available options
2021-04-15id stringrequired
Recurring Task Id
locationId stringrequired
Location Id
- application/json
- Body
- Example (auto)
Bodyrequired
titlestring
Name of the task
descriptionstring
Description of the task
contactIdsstring[]
Contact Id
ownersstring[]
Assigned To
rruleOptionsobject
Recurring rules
ignoreTaskCreationboolean
Create initial task or not
{
"title": "Task Name",
"description": "Task Description",
"contactIds": [
"sx6wyHhbFdRXh302Lunr"
],
"owners": [
"sx6wyHhbFdRXh302Lunr"
],
"rruleOptions": {
"intervalType": "hourly",
"interval": 1,
"startDate": "2025-07-23T10:00:00.000Z",
"dueAfterSeconds": 600
},
"ignoreTaskCreation": true
}
Successful response
- application/json
- Schema
- Example (auto)
Schema
recurringTaskobjectrequired
Recurring Tasks
{
"recurringTask": {
"id": "sx6wyHhbFdRXh302Lunr",
"title": "Task Name",
"description": "Task Description",
"locationId": "sx6wyHhbFdRXh302Lunr",
"updatedAt": "2021-04-15T10:00:00.000Z",
"createdAt": "2021-04-15T10:00:00.000Z",
"rruleOptions": {
"createTaskIfOverDue": false,
"interval": 1,
"intervalType": "hourly",
"startDate": "2024-10-29T12:34:03.000Z",
"dueAfterSeconds": 600,
"count": 550
},
"totalOccurrence": 10,
"deleted": false,
"assignedTo": "sx6wyHhbFdRXh302Lunr",
"contactId": "v5cEPM428h8vShlRW1KT"
}
}