Skip to main content

Reschedule Failed Post

Overview

The Reschedule Failed Post endpoint allows you to reschedule a post that previously failed to publish. This is useful for retrying failed posts with a new scheduled date and time.

Base URL:

https://www.oneupapp.io

Endpoint

POST /api/reschedulefailedpost

Request Parameters

ParameterRequiredDescription
apiKeyYesYour personal API key generated from the API Access page.
post_idYesThe ID of the failed post to reschedule. You can find the post_id from the List Failed Posts endpoint.
scheduled_date_timeYesThe new date and time for the post to be published. Format: YYYY-MM-DD HH:MM

Sample Request

curl --location --request POST \
"https://www.oneupapp.io/api/reschedulefailedpost" \
--data-urlencode "apiKey=YOUR_API_KEY" \
--data-urlencode "post_id=48120642" \
--data-urlencode "scheduled_date_time=2026-05-15 10:00"

Sample Response

{
"message": "Post rescheduled successfully"
}

Tips & Notes

  • Only failed posts can be rescheduled using this endpoint.
  • Use the List Failed Posts endpoint to retrieve the post_id of the post you want to reschedule.
  • The scheduled_date_time must be in the future and in the format YYYY-MM-DD HH:MM.
  • After rescheduling, the post will appear in your scheduled posts list.

Result: You have successfully rescheduled a failed post!