Cue
API ReferencePosts

Resend a failed post

Retry publishing for failed platforms on a failed or partial post.

POST
/posts/{id}/resend

Authorization

bearerAuth
AuthorizationBearer <token>

API keys start with cue_sk_ prefix. Get your key from the Cue dashboard.

Example: cue_sk_abc123def456ghi789jkl012mno345pqr678stu901vwx234

In: header

Path Parameters

id*string

Post ID

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://api.oncue.so/v1/posts/pst_r3v8n2xk5qmj/resend"
{
  "data": {
    "id": "pst_r3v8n2xk5qmj",
    "profileId": "prf_h7k2m9xp4qnj",
    "content": "Retrying this post",
    "status": "queued",
    "scheduledAt": null,
    "createdAt": "2025-01-15T10:00:00Z",
    "updatedAt": "2025-01-15T12:00:00Z"
  },
  "message": "Post queued for resend to 1 platform(s)"
}

{
  "error": "Cannot resend a post with status: draft"
}

{
  "error": "Unauthorized"
}
{
  "error": "Post not found"
}