get_linkedin_user_comments
Retrieve LinkedIn user comments by providing a user URN to analyze engagement patterns and discussion activity on the platform.
Instructions
Get LinkedIn comments for a user by URN (must include prefix, example: fsd_profile:ACoAA...)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
commented_after | No | Filter comments that created after the specified date. Accepts timestamp | |
count | No | Max comments | |
timeout | No | Timeout in seconds | |
urn | Yes | User URN (must include prefix, example: fsd_profile:ACoAA...) |
Input Schema (JSON Schema)
{
"properties": {
"commented_after": {
"description": "Filter comments that created after the specified date. Accepts timestamp",
"type": "number"
},
"count": {
"default": 10,
"description": "Max comments",
"type": "number"
},
"timeout": {
"default": 300,
"description": "Timeout in seconds",
"type": "number"
},
"urn": {
"description": "User URN (must include prefix, example: fsd_profile:ACoAA...)",
"type": "string"
}
},
"required": [
"urn"
],
"type": "object"
}