Appearance
Pause Schedule
Pause or resume an automated schedule. A paused schedule will not create new instances until resumed. Requires ADMIN permissions.
Parameters
| name * are required parameters | data type | description |
|---|---|---|
scheduleId* | string | The unique identifier of the schedule |
body.paused* | boolean | true to pause the schedule, false to resume it |
Return Value
The updated schedule with the new paused state.
Examples
bash
curl -X POST "https://app.wombat.software/api/{targetPath}/schedule/:scheduleId/pause" \
-H "Content-Type: application/json" \
-H "Authentication: Bearer ..." \
-d '{"paused": true}'ENDPOINTS
post
/api/{targetPath}/schedule/:scheduleId/pause