Közös és csatornánkénti tartalom
Egy szöveg minden csatornára, vagy csatornánként külön változat. Mikor melyiket használd, és mit veszítesz a visszalépéssel.
Shared text
By default, you write one version, and the same text goes to every selected channel. This is the shared text. Unless you create a separate version for a channel, it uses the shared text. Fix a typo in the shared text, and it is fixed everywhere.
Channel-specific text
- 1Switch to the channel tabEach selected channel has a tab above the editor.
- 2Open the full editorUse the
Full editorbutton. From then on, that channel uses its own text. - 3Write your versionThe character counter now shows the limit that applies to the connected account for that channel.
Channel-specific text applies only to that channel. All other channels still use the shared text.
Switching back to shared
If you switch a channel back to shared text, its channel-specific text is deleted and cannot be recovered. That is why we ask you to confirm. If you only want to compare the two versions, copy the channel-specific text first.
Which to use
- Shared text if the same message goes everywhere. This is the more common case and requires much less maintenance.
- Channel-specific text if the tone really differs: the LinkedIn post is longer and more matter-of-fact, while the TikTok caption is short.
- Channel-specific text also when the character limit makes it necessary. A 280-character X post and a LinkedIn post rarely use the same text.
If you regularly write the same two versions, save them as a set and start the next post from there.
The API equivalent
There is no "shared text" in the API. You provide the content for each channel as a separate item in the posts array. Shared text is a convenience in the interface. When you save, it becomes per-channel content.
{
"type": "schedule",
"date": "2026-09-15T09:00:00.000Z",
"posts": [
{
"integration": { "id": "<x-csatorna>" },
"value": [{ "content": "<p>Rövid változat X-re.</p>" }]
},
{
"integration": { "id": "<linkedin-csatorna>" },
"value": [{ "content": "<p>Hosszabb változat LinkedInre.</p>" }]
}
]
}If you send the same content to both, that is equivalent to shared text. See the Create a post endpoint for the full request specification.