Skip to main content
POST
/
social
/
posts
/
{post_id}
/
retry
Retry publishing a post
curl --request POST \
  --url https://api.smartlyq.com/v1/social/posts/{post_id}/retry \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "platforms": [
    "<string>"
  ]
}
'
{
  "success": true,
  "data": {
    "success": true,
    "retried": [
      "facebook",
      "instagram"
    ],
    "final_status": "published",
    "platform_results": [
      {
        "success": true,
        "error": null
      },
      {
        "success": true,
        "error": null
      }
    ]
  },
  "meta": {
    "request_id": "req_abc123",
    "timestamp": "2026-03-01T16:00:00Z"
  }
}

Authorizations

Authorization
string
header
required

API key from Developer dashboard (Bearer token).

Path Parameters

post_id
integer
required

Post id

Body

application/json
platforms
string[]

Platforms to retry, e.g. ['facebook']

Response

Success

success
enum<boolean>
Available options:
true
data
object
meta
object