API actions for the LinkedIn integration.
Publish posts to LinkedIn from Lodol workflows.
Create LinkedIn post
Publish a post to LinkedIn from a company page or personal profile.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
author_urn | string | Yes | Who the post is published as: the LinkedIn ID (URN) of the person or organization, for example, urn:li:person:ABC123 or urn:li:organization:12345. |
text | string | Yes | Post text content. |
visibility | string | No | Who can see the post: PUBLIC (anyone) or CONNECTIONS (only the author's connections). Defaults to PUBLIC. |
Response
{
"post": {
"author": "urn:li:person:ABC123XYZ",
"id": "urn:li:share:7015432198765",
"text": "Excited to announce our new product launch!",
"visibility": "PUBLIC"
},
"status": "success"
}