poll_conversations
Monitor LinkedIn and Sales Navigator conversations for new messages by syncing workflows. Track updates from specific users with optional timestamp filtering to control message history retrieval.
Instructions
Execute multiple conversation sync workflows to monitor for new messages across standard LinkedIn and Sales Navigator conversations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
conversations | No | Array of conversations to monitor for new messages |
Input Schema (JSON Schema)
{
"properties": {
"conversations": {
"description": "Array of conversations to monitor for new messages",
"items": {
"properties": {
"personUrl": {
"description": "The LinkedIn URL of the person whose conversation you want to poll (e.g., 'https://www.linkedin.com/in/john-doe')",
"type": "string"
},
"since": {
"description": "Optional ISO 8601 timestamp to only retrieve messages since this date (e.g., '2024-01-15T10:30:00Z'). If not provided, the entire conversation history will be returned.",
"type": "string"
},
"type": {
"description": "Conversation type: 'st' for standard LinkedIn messages, 'nv' for Sales Navigator messages",
"enum": [
"st",
"nv"
],
"type": "string"
}
},
"required": [
"personUrl",
"type"
],
"type": "object"
},
"type": "array"
}
},
"type": "object"
}