get_linkedin_conversations
Retrieve LinkedIn messaging conversations from your account with optional filters for date range and conversation count to manage professional communications.
Instructions
Get list of LinkedIn conversations from the messaging interface. Account ID is taken from environment.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
connected_after | No | Filter conversations created after the specified date (timestamp) | |
count | No | Max conversations to return | |
timeout | No | Timeout in seconds |
Input Schema (JSON Schema)
{
"properties": {
"connected_after": {
"description": "Filter conversations created after the specified date (timestamp)",
"type": "number"
},
"count": {
"default": 20,
"description": "Max conversations to return",
"type": "number"
},
"timeout": {
"default": 300,
"description": "Timeout in seconds",
"type": "number"
}
},
"required": [],
"type": "object"
}