publishing

List scheduled posts

Fetches the current user's scheduled posts, ordered by scheduled time (ascending). Supports cursor-based pagination. Only returns posts scheduled in the future.

get/v2/schedules

Query parameters

limitinteger
cursorstring

Response

Default Response

countstring required
cursorstring

Example response

{
  "items": [
    {
      "draft": {
        "accountId": "1",
        "content": {
          "text": "My text",
          "mediaUrls": [
            "https://database.blotato.io/some-image-path.jpg"
          ],
          "platform": "twitter",
          "additionalPosts": [
            {
              "text": "My text",
              "mediaUrls": [
                "https://database.blotato.io/some-image-path.jpg"
              ]
            }
          ]
        },
        "target": {
          "targetType": "webhook",
          "url": "https://example.com/webhook"
        }
      }
    }
  ]
}

Changes

Changed in 2 of the 8 revisions of this API.5

    • added the optional property action to the response with the 403 status

      response-optional-property-added

    • added the optional property action to the response with the 500 status

      response-optional-property-added

    • added the optional property details to the response with the 403 status

      response-optional-property-added

    • added the optional property details to the response with the 500 status

      response-optional-property-added

    • added the non-success response with the status 403

      response-non-success-status-added