Scheduled Posts API =================== .. contents:: :depth: 2 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. .. code:: PUT /api/1.3/scheduled_posts/ Parameters ********** +------------------+---------+-----------------------------------------+ | Name | Type | Description | +==================+=========+=========================================+ | ``scheduled_at`` | Integer || Timestamp of scheduling date. Required | | | || It must be expressed in UTC-based time | +------------------+---------+-----------------------------------------+ Response ******** The same specifications used for :ref:`creating-drafts` apply here. Unscheduling posts ------------------ Unschedules a draft. .. code:: DELETE /api/1.3/scheduled_posts/ Response ******** The same specifications used for :ref:`creating-drafts` apply here. List scheduled posts -------------------- Fetch all scheduled drafts. Returned results are ordered by most recently created. .. code:: GET /api/1.3/scheduled_posts Response ******** Returns an array of objects with same specifications as :ref:`creating-drafts`. Get a single scheduled post --------------------------- .. code:: GET /api/1.3/scheduled_posts/ Response ******** The same specification used for :ref:`creating-drafts` apply here.