send_linkedin_post_comment
Post comments on LinkedIn posts and replies to engage with content using your LinkedIn account. Add your perspective to discussions and interact with professional content.
Instructions
Create a comment on a LinkedIn post or on another comment. Account ID is taken from environment.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
text | Yes | Comment text | |
timeout | No | Timeout in seconds | |
urn | Yes | URN of the activity or comment to comment on (e.g., 'activity:123' or 'comment:(activity:123,456)') |
Input Schema (JSON Schema)
{
"properties": {
"text": {
"description": "Comment text",
"type": "string"
},
"timeout": {
"default": 300,
"description": "Timeout in seconds",
"type": "number"
},
"urn": {
"description": "URN of the activity or comment to comment on (e.g., 'activity:123' or 'comment:(activity:123,456)')",
"type": "string"
}
},
"required": [
"text",
"urn"
],
"type": "object"
}