REST APIPOST
Unschedule Post
Take a scheduled post off the calendar without deleting it. It stays in the workspace as an undated draft you can reschedule or publish later.
POST
https://post.adaptlypost.com/post/api/v1/social-posts/:id/unscheduleTake a scheduled post off the calendar without deleting it. The post becomes an undated draft: status DRAFT and scheduledAt null. No body is needed.
API Key (Bearer token)
The post keeps its text, media and accounts. Give it a new time later with Update Post, or publish it with Publish Draft.
Which posts can be unscheduled
Only scheduled posts and drafts. A post that is publishing, published or failed returns 400 "Cannot edit post in current state". An id outside the key's workspace returns 404.Unschedule a Post
curl --request POST \
--url https://post.adaptlypost.com/post/api/v1/social-posts/post_xyz789/unschedule \
--header 'Authorization: Bearer <api-key>'200
{
"id": "post_xyz789",
"contentType": "IMAGE",
"text": "Check out our new product launch!",
"status": "DRAFT",
"scheduledAt": null,
"timezone": "America/New_York",
"platforms": [
{
"id": "pp_001",
"platform": "TWITTER",
"status": "PENDING",
"accountName": "@yourhandle"
},
{
"id": "pp_002",
"platform": "LINKEDIN",
"status": "PENDING",
"accountName": "Your Company"
}
],
"createdAt": "2026-03-14T13:55:00Z",
"updatedAt": "2026-03-14T15:20:00Z"
}