Delete a post
Permanently deletes a post and all its items. Already-published items remain live on the destination platforms — this only removes the CutPro record.
Authorization
apiKey In: header
Path Parameters
Response Body
curl -X DELETE "https://example.com/posts/string"Update a post PATCH
Updates a post that is still pending. Two things can change: • `scheduled_at` — reschedule (must be at least 1 minute in the future) or set to `null` to publish immediately. Only allowed while every item is still in `pending` state. • `items` — replace the set of pending items. Items with `item_id` are updated in place, items without are inserted, and pending items not present in the body are deleted. Items that already finished publishing are never touched. At least one of `scheduled_at` or `items` must be provided.
Trigger publish POST
Forces the publishing pipeline to run for a post that is currently `pending`, `failed`, or stuck. Useful for scheduled posts you want to publish early, or to nudge a post whose worker missed its window.