Platformok

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

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

Basics

Platform
LinkedIn
Character limit
The platform does not specify a general limit.
Media
Image, video, or document. Multiple images can also be turned into a carousel.
settings.__type
linkedin, linkedin-page
Required fields
No required settings fields.
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
TextnoneOur platform that can take the longest text.
Image1 or more imagesMultiple images appear as a collage by default.
Carousel2 or more imagespost_as_images_carousel: true. LinkedIn publishes it as a document.
Video1 videoNo extra notes.

Rules

  • There are two separate channel types: the personal profile ("linkedin") and the company page ("linkedin-page"). Their settings are the same.
  • You can mention a company in the post. You pick it in the editor, not as a settings field.

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_as_images_carouselbooleannoTurns the images into a swipeable carousel.
carousel_namestringnoThe carousel title, if you publish it as a carousel.

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 */ ]
}

Text post

{
  "integration": { "id": "<linkedin-csatorna>" },
  "value": [{ "content": "<p>Amit a héten tanultunk a bevezetésről.</p>", "image": [] }],
  "settings": { "__type": "linkedin" }
}

Carousel, with a name

carousel_name appears above the pages in LinkedIn's document view.

{
  "integration": { "id": "<linkedin-csatorna>" },
  "value": [{
    "content": "<p>Öt dia a bevezetésről.</p>",
    "image": [
      { "id": "<media-1>", "path": "https://uploads.posty.hu/1.png" },
      { "id": "<media-2>", "path": "https://uploads.posty.hu/2.png" }
    ]
  }],
  "settings": {
    "__type": "linkedin",
    "post_as_images_carousel": true,
    "carousel_name": "Bevezetés öt lépésben"
  }
}

To a company page

The same fields, a different __type and a different channel ID.

{
  "integration": { "id": "<linkedin-page-csatorna>" },
  "value": [{ "content": "<p>Csapatunk bővül.</p>", "image": [] }],
  "settings": { "__type": "linkedin-page" }
}

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.