send_linkedin_post
Create and publish LinkedIn posts using your connected account. Specify text content, visibility settings, and comment permissions to share professional updates.
Instructions
Create a post on LinkedIn. Account ID is taken from environment.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
comment_scope | No | Who can comment on the post | ALL |
text | Yes | Post text content | |
timeout | No | Timeout in seconds | |
visibility | No | Post visibility | ANYONE |
Input Schema (JSON Schema)
{
"properties": {
"comment_scope": {
"default": "ALL",
"description": "Who can comment on the post",
"enum": [
"ALL",
"CONNECTIONS_ONLY",
"NONE"
],
"type": "string"
},
"text": {
"description": "Post text content",
"type": "string"
},
"timeout": {
"default": 300,
"description": "Timeout in seconds",
"type": "number"
},
"visibility": {
"default": "ANYONE",
"description": "Post visibility",
"enum": [
"ANYONE",
"CONNECTIONS_ONLY"
],
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}