Scheduled Posts API¶
The scheduled post API supports the scheduling of drafts and the unscheduling of drafts.
Scheduling posts¶
Schedules or re-schedules a draft to be published at certain date and time.
PUT /api/1.3/scheduled_posts/<id>
Parameters¶
Name |
Type |
Description |
---|---|---|
|
Integer |
Timestamp of scheduling date. Required
It must be expressed in UTC-based time
|
Response¶
The same specifications used for Creating drafts apply here.
Unscheduling posts¶
Unschedules a draft.
DELETE /api/1.3/scheduled_posts/<id>
Response¶
The same specifications used for Creating drafts apply here.
List scheduled posts¶
Fetch all scheduled drafts. Returned results are ordered by most recently created.
GET /api/1.3/scheduled_posts
Response¶
Returns an array of objects with same specifications as Creating drafts.
Get a single scheduled post¶
GET /api/1.3/scheduled_posts/<id>
Response¶
The same specification used for Creating drafts apply here.