Platformok

Instagram: posztolási szabályok és beállítások

Mit fogad el a Instagram csatorna a Postyban: média, korlátok, kötelező mezők, és a settings objektum mezői az API-hoz.

Basics

Platform
Instagram
Character limit
The platform does not specify a general limit.
Media
Required: at least one image or video. Multiple images become a carousel.
settings.__type
instagram, instagram-standalone
Required fields
post_type
Platform page

Post types

The same channel accepts more than one kind of post, and each kind has different requirements. The table shows what you need for each.

TypeMediaNotes
Feed, one image1 image, requiredpost_type: post.
Feed, carousel2 or more imagesMultiple images automatically become a swipeable carousel.
Reels1 videopost_type: post, with a video. Instagram decides whether it appears as a Reel.
Story1 image or videopost_type: story. Only one item is allowed.

Rules

  • There are two kinds of connection. "instagram" is a business account linked to a Facebook Page, "instagram-standalone" is an account connected directly. The settings fields are the same.
  • A Story can only go out if the account is allowed to publish Stories on the platform.

Settings fields

These fields go into the post's settings object, alongside the __type field. In the UI, you fill in the same ones in the channel's settings section.

FieldTypeRequiredWhat it does
post_type"post" | "story"yesFeed post or Story.
collaboratorsarray, each item { label: string }noUsernames of collaborator accounts.
audioobjectnoThe music track ID, optionally with artist, title, and audio and video volume (between 0 and 100).
is_trial_reelbooleannoPublishes it as a trial Reel.
graduation_strategy"MANUAL" | "SS_PERFORMANCE"noFor a trial Reel: you move it to the main feed by hand, or it moves automatically based on performance.

Allowed values

The fields below only accept these values. Any other value returns a 400, and the response names the field.

post_type

ValueMeaning
postFeed post.
storyStory, for 24 hours.

graduation_strategy

ValueMeaning
MANUALYou move the trial Reel into the main feed.
SS_PERFORMANCEInstagram moves it if it performs well.

Examples

Each example is one item in the POST /public/v1/posts request's posts array. The envelope around it is always this:

{
  "type": "schedule",
  "date": "2026-09-15T09:00:00.000Z",
  "shortLink": false,
  "posts": [ /* az alábbi elem */ ]
}

Feed post with one image

{
  "integration": { "id": "<instagram-csatorna>" },
  "value": [{
    "content": "<p>Új a kínálatunkban.</p>",
    "image": [{ "id": "<media>", "path": "https://uploads.posty.hu/kep.jpg" }]
  }],
  "settings": { "__type": "instagram", "post_type": "post" }
}

Carousel, with three images

{
  "integration": { "id": "<instagram-csatorna>" },
  "value": [{
    "content": "<p>Lapozz végig a részleteken.</p>",
    "image": [
      { "id": "<media-1>", "path": "https://uploads.posty.hu/1.jpg" },
      { "id": "<media-2>", "path": "https://uploads.posty.hu/2.jpg" },
      { "id": "<media-3>", "path": "https://uploads.posty.hu/3.jpg" }
    ]
  }],
  "settings": { "__type": "instagram", "post_type": "post" }
}

Story

A single image or video. The platform rejects it if there is more than one item.

{
  "integration": { "id": "<instagram-csatorna>" },
  "value": [{
    "content": "<p>Ma nyitunk.</p>",
    "image": [{ "id": "<media>", "path": "https://uploads.posty.hu/story.jpg" }]
  }],
  "settings": { "__type": "instagram", "post_type": "story" }
}

With a collaborator account

The collaborators items expect usernames, without the @ sign.

{
  "integration": { "id": "<instagram-csatorna>" },
  "value": [{
    "content": "<p>Közös munka.</p>",
    "image": [{ "id": "<media>", "path": "https://uploads.posty.hu/kep.jpg" }]
  }],
  "settings": {
    "__type": "instagram",
    "post_type": "post",
    "collaborators": [{ "label": "masik_fiok" }]
  }
}

The channel ID comes from the channel list, and the path values for images and videos from media upload. The exact schema for the connected account comes from the settings schema endpoint. From the command line, the same thing is the --settings flag. See the CLI examples.

Is something missing from this page? Email [email protected] or use the form on the Help page.