status field.
Pause a scheduler
Send a PATCH request withstatus: 0 to pause the scheduler and stop new posts from being queued.
Resume a scheduler
Send a PATCH request withstatus: 1 to resume a paused scheduler.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Pause, resume, update fields, delete pending queue rows, or delete the scheduler. No dedicated pause route — use PATCH with status: 0.
status field.
status: 0 to pause the scheduler and stop new posts from being queued.
curl -X PATCH "https://reachowl.com/api/v1/post-scheduler/42" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"status": 0}'
status: 1 to resume a paused scheduler.
curl -X PATCH "https://reachowl.com/api/v1/post-scheduler/42" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"status": 1}'
curl -X PATCH "https://reachowl.com/api/v1/post-scheduler/42" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"delete_queue_ids": [101, 102, 103]
}'
curl -X PUT "https://reachowl.com/api/v1/post-scheduler/42" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "Updated Promos",
"status": 1,
"posts": [
{ "text": "New launch announcement!" }
]
}'
curl -X DELETE "https://reachowl.com/api/v1/post-scheduler/42" \
-H "Authorization: Bearer YOUR_TOKEN"
