ACME API Documentation logo

Retry a Post

Retry to publish a post that failed

PUThttps://api.acme.com/api/post/retry
Available on Premium, Business, Enterprise plans.

Retry to publish a post that failed with a status of "error". A retried post will be treated as a scheduled post, thus the final status can be obtained via the /history endpoint or the scheduled action webhook.

While the post is being retried, the status will be "pending". You may check on the status of the retry by calling the GET post endpoint.

The post can be retried only once. Recommend to only use if the error message indicates a retry is possible.

When retrying a failed social media post, first verify that the post hasn't already been published. Social networks may sometimes report errors even when they've successfully processed and published the post.

Header Parameters

Authorizationstringrequired
API Key of the Primary Profile.

Format: Authorization: Bearer API_KEY
Profile-Keystring
Profile Key of a User Profile.

Format: Profile-Key: PROFILE_KEY

Body Parameters

idstringrequired

The top-level ACME Post ID. The original post must have a status of "error".

curl \
-H "Authorization: Bearer API_KEY" \
-H 'Content-Type: application/json' \
-d '{"id": "s8k2jsk0pl"}' \
-X PUT https://api.acme.com/api/post/retry
{
  "status": "pending", // The post will be retried
  "id": "N7kaDiZAfwc544OBKlgc" // ACME Post ID
}