Retry a failed item
Re-queues a failed item for publishing. The item's Error and previous render_id are cleared. Only items currently in failed state can be retried.
Authorization
apiKey In: header
Path Parameters
Response Body
application/json
application/json
application/json
curl -X POST "https://example.com/posts/string/items/string/retry"{ "success": true, "item_id": "string"}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.
Delete a post item DELETE
Removes a single `pending`, `rendering` or `failed` item from a post. A `rendering` item also aborts its render job when no other item still needs it. An item already `completed` is deleted from the destination network first, and only on networks that allow it. The network's refusal comes back as a `400` and nothing is removed here. An item in `publishing` is never removable: the media is already on its way. If the deletion empties the parent post, the post is also removed and `post_deleted: true` is returned.