get_linkedin_post_reactions
Retrieve LinkedIn post reactions by providing the post URN to analyze engagement metrics and user interactions with the content.
Instructions
Get LinkedIn reactions for a post by URN
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | Yes | Max reactions to return | |
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": 50,
"description": "Max reactions to return",
"type": "number"
},
"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"
}