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

Platformok

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

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

## Basics

Platform

Discord

Character limit

1980 (the connected account may have a different limit)

Media

Image or video, optional.

settings.\_\_type

`discord`

Required fields

channel

Platform page

[Discord scheduler](https://posty.hu/en/channels/discord)

## 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 |
| --- | --- | --- |
| Message | optional | The target server channel is required, and it expects an ID. |

## Rules

- The destination server channel is required, and it expects an ID. You fetch the list of channels with the channel's tool call.

## 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 |
| --- | --- | --- | --- |
| channel | string (id) | yes | The destination server channel ID. |

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

### Message to a server channel

The channel ID is returned by the channel tool call.

```
{
  "integration": { "id": "<discord-csatorna>" },
  "value": [{ "content": "<p>Elindult az új verzió.</p>", "image": [] }],
  "settings": { "__type": "discord", "channel": "<szervercsatorna-azonosito>" }
}
```

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.
