get_linkedin_user_connections
Retrieve LinkedIn user connections data from your account, with options to filter by connection date and limit results for efficient network analysis.
Instructions
Get list of LinkedIn user connections. Account ID is taken from environment.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
connected_after | No | Filter users that added after the specified date (timestamp) | |
count | No | Max connections to return | |
timeout | No | Timeout in seconds |
Input Schema (JSON Schema)
{
"properties": {
"connected_after": {
"description": "Filter users that added after the specified date (timestamp)",
"type": "number"
},
"count": {
"default": 20,
"description": "Max connections to return",
"type": "number"
},
"timeout": {
"default": 300,
"description": "Timeout in seconds",
"type": "number"
}
},
"required": [],
"type": "object"
}