REST APIPOST
Retry Failed
Retry failed platform deliveries
POST
https://post.adaptlypost.com/post/api/v1/social-posts/:id/retryRetry publishing to platforms that previously failed for a specific post.
API Key (Bearer token)
Body Parameters
| Parameter | Type | Description |
|---|---|---|
platformIdsREQUIRED | string[] | 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
}