get_linkedin_post_comments
Retrieve LinkedIn post comments by providing the post URN, with options to sort by relevance or recency and control the number of comments returned.
Instructions
Get LinkedIn comments for a post by URN
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | Yes | Max comments to return | |
sort | No | Sort type (relevance or recent) | relevance |
timeout | No | Timeout in seconds | |
urn | Yes | Post URN, only activity urn type is allowed (example: activity:7234173400267538433) |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"default": 10,
"description": "Max comments to return",
"type": "number"
},
"sort": {
"default": "relevance",
"description": "Sort type (relevance or recent)",
"enum": [
"relevance",
"recent"
],
"type": "string"
},
"timeout": {
"default": 300,
"description": "Timeout in seconds",
"type": "number"
},
"urn": {
"description": "Post URN, only activity urn type is allowed (example: activity:7234173400267538433)",
"type": "string"
}
},
"required": [
"urn",
"count"
],
"type": "object"
}