REST APIPOST

Retry Failed

Retry failed platform deliveries

POSThttps://post.adaptlypost.com/post/api/v1/social-posts/:id/retry

Retry publishing to platforms that previously failed for a specific post.

API Key (Bearer token)

Body Parameters

ParameterTypeDescription
platformIdsREQUIREDstring[]Array of platform entry IDs to retry (from post results)
Only platforms with FAILED status can be retried. Get platform IDs from the post results endpoint.
Retry failed platforms
curl --request POST \
  --url https://post.adaptlypost.com/post/api/v1/social-posts/post_xyz789/retry \
  --header 'Authorization: Bearer <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
    "platformIds": ["pp_002", "pp_003"]
  }'
200
{
  "postId": "post_xyz789",
  "queuedPlatforms": ["LINKEDIN", "INSTAGRAM"],
  "isScheduled": false
}