---
title: "LinkedIn: posztolási szabályok és beállítások | Posty dokumentáció"
description: "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."
canonical: https://posty.hu/en/docs/platforms/linkedin
source: https://posty.hu/en/docs/platforms/linkedin.md
---

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

[LinkedIn scheduler](https://posty.hu/en/channels/linkedin)

## 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.

| Type | Media | Notes |
| --- | --- | --- |
| Text | none | Our platform that can take the longest text. |
| Image | 1 or more images | Multiple images appear as a collage by default. |
| Carousel | 2 or more images | post\_as\_images\_carousel: true. LinkedIn publishes it as a document. |
| Video | 1 video | No 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.

| Field | Type | Required | What it does |
| --- | --- | --- | --- |
| post\_as\_images\_carousel | boolean | no | Turns the images into a swipeable carousel. |
| carousel\_name | string | no | The 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 */ ]
}
```

Kód másolása

### Text post

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

Kód másolása

### 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"
  }
}
```

Kód másolása

### 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" }
}
```

Kód másolása

The channel ID comes from the [channel list](https://posty.hu/en/docs/api/endpoints/csatornak), and the `path` values for images and videos from [media upload](https://posty.hu/en/docs/api/endpoints/media-feltoltes). The exact schema for the connected account comes from the [settings schema endpoint](https://posty.hu/en/docs/api/endpoints/csatorna-sema). From the command line, the same thing is the `--settings` flag. See the [CLI examples](https://posty.hu/en/docs/cli/examples).

Documentation pages

Is something missing from this page? Email [norbert@posty.hu](mailto:norbert@posty.hu) or use the form on the [Help](https://posty.hu/en/help) page.
