Scheduling
Change Schedule Status
Update the status of an existing schedule. Use this endpoint to activate or pause a schedule without deleting it
POST
Update the status of an existing schedule. Use this endpoint to activate or pause a schedule without deleting it.
Base URL
All API requests should be made to:Example request
Request body
| Field | Type | Required | Description |
|---|---|---|---|
schedule_uuid | string | Yes | UUID of the schedule to update |
update_status_to | string | Yes | New status: "active" or "paused" |
Example response
Response fields
| Field | Type | Description |
|---|---|---|
success | boolean | Indicates if the status was updated successfully |
details | string | Success message |
Status Options
| Status | Description |
|---|---|
"active" | Schedule is running and will execute according to its configuration |
"paused" | Schedule is temporarily paused and will not execute |
Use Cases
- Activate Schedule: Change a paused or inactive schedule to active
- Pause Schedule: Temporarily stop a schedule without deleting it
- Schedule Management: Control schedule execution programmatically
- Maintenance: Pause schedules during maintenance windows
- Testing: Pause/activate schedules during testing phases
Examples
Activate a Schedule
Pause a Schedule
Important Notes
- No Deletion: Changing status does not delete the schedule or its rules
- Immediate Effect: Status changes take effect immediately
- Paused Schedules: Paused schedules will not execute until activated again
- Active Schedules: Active schedules will resume execution according to their configuration
- Completed/Expired: You cannot change the status of completed or expired schedules
Related Documentation
- Scheduling Overview - Learn about scheduling types and status values
- Get Single Schedule Details - View current schedule status
- Get Active Schedules (Paginated) - Filter schedules by status
- Delete Schedule - Permanently delete a schedule
Authorizations
API key for authentication. Get this from your dashboard by selecting a brand and going to API Keys section.
Brand UUID for authentication. Get this from your dashboard after adding a brand - it will be displayed in the UI.
Body
application/json
Schedule status update configuration

