get_linkedin_user_info
Retrieve LinkedIn profile details including name, headline, and company information for users you have previously engaged with in conversations.
Instructions
Retrieve LinkedIn profile information for a specific user
This returns profile information if you previously started a conversation with them.
Args: user_id: The ID of the user account_id: The ID of the account (seat) linkedin_user_id: The LinkedIn user ID
Returns: LinkedIn profile information including name, headline, company, etc.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | Yes | ||
| account_id | Yes | ||
| linkedin_user_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"type": "string"
},
"linkedin_user_id": {
"type": "string"
},
"user_id": {
"type": "string"
}
},
"required": [
"user_id",
"account_id",
"linkedin_user_id"
],
"type": "object"
}