Skip to main content
Update a post scheduler in place or remove it entirely. There are no dedicated pause or resume endpoints: you control these states by sending a PATCH request with the status field.

Pause a scheduler

Send a PATCH request with status: 0 to pause the scheduler and stop new posts from being queued.

Resume a scheduler

Send a PATCH request with status: 1 to resume a paused scheduler.

Delete pending queue rows

Remove specific pending queue items by passing an array of queue IDs in a PATCH request.

Full update (PUT)

Use PUT to replace the scheduler’s name, status, posts, or other editable fields. Include the full body of fields you want to set.

Delete a scheduler

Send a DELETE request to permanently remove the scheduler and all associated queue rows.