dopost · Example Payload

Schedule Cross Network

Social MediaSchedulingPublishingInstagramFacebookTikTokPinterestX TwitterYouTubeContent ManagementREST

Schedule Cross Network is an example object payload from dopost, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

_notesrequests

Example Payload

schedule-cross-network.json Raw ↑
{
  "_notes": "dopost's publish endpoint targets a single accountId per call. To fan out across networks, the consumer issues N publish calls — one per connected account. This example shows the orchestration pattern.",
  "requests": [
    {
      "method": "POST",
      "url": "https://dopost.co/api/v1/post/publish",
      "headers": { "x-api-key": "<apiKey>", "Content-Type": "application/json" },
      "body": {
        "accountId": "acc_x_01",
        "text": "New product drop. 24h preview for subscribers.",
        "publishAt": "2026-06-01T15:00:00Z"
      }
    },
    {
      "method": "POST",
      "url": "https://dopost.co/api/v1/post/publish",
      "headers": { "x-api-key": "<apiKey>", "Content-Type": "application/json" },
      "body": {
        "accountId": "acc_instagram_01",
        "text": "New product drop. 24h preview for subscribers.",
        "publishAt": "2026-06-01T15:00:00Z",
        "mediaIds": ["med_01J0ABC"],
        "instagram": { "format": "feed" }
      }
    },
    {
      "method": "POST",
      "url": "https://dopost.co/api/v1/post/publish",
      "headers": { "x-api-key": "<apiKey>", "Content-Type": "application/json" },
      "body": {
        "accountId": "acc_pinterest_01",
        "text": "New product drop. 24h preview for subscribers.",
        "publishAt": "2026-06-01T15:00:00Z",
        "mediaIds": ["med_01J0ABC"]
      }
    }
  ]
}