Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.postiz.com/llms.txt

Use this file to discover all available pages before exploring further.

LinkedIn Page posts use the same settings schema as personal LinkedIn profiles. The only difference is the __type value - everything else (carousel options, image arrays, content) is identical.

Settings Schema

{
  "settings": {
    "__type": "linkedin-page",
    "post_as_images_carousel": false
  }
}
For the full field reference (including post_as_images_carousel and carousel_name), see the LinkedIn settings page.

Fields

FieldTypeRequiredDescription
__typestringYesMust be linkedin-page
post_as_images_carouselbooleanNoDisplay multiple images as a carousel
carousel_namestringNoName for the carousel document. Only used when post_as_images_carousel is true.

Complete Example

{
  "type": "now",
  "date": "2024-12-14T10:00:00.000Z",
  "shortLink": false,
  "tags": [],
  "posts": [
    {
      "integration": {
        "id": "your-linkedin-page-integration-id"
      },
      "value": [
        {
          "content": "We're hiring! Join our team and help us build the future.",
          "image": []
        }
      ],
      "settings": {
        "__type": "linkedin-page",
        "post_as_images_carousel": false
      }
    }
  ]
}
For a carousel example, see the LinkedIn carousel example - swap __type: "linkedin" for __type: "linkedin-page".