send_linkedin_chat_message
Send direct messages to LinkedIn users through the HorizonDataWave API using account credentials from environment settings.
Instructions
Send a chat message via LinkedIn management API. Account ID is taken from environment.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
company | No | Company URN where the account is admin (format: company:123456) | |
text | Yes | Message text | |
timeout | No | Timeout in seconds | |
user | Yes | Recipient user URN (must include prefix, e.g. fsd_profile:ACoAA...) |
Input Schema (JSON Schema)
{
"properties": {
"company": {
"description": "Company URN where the account is admin (format: company:123456)",
"type": "string"
},
"text": {
"description": "Message text",
"type": "string"
},
"timeout": {
"default": 300,
"description": "Timeout in seconds",
"type": "number"
},
"user": {
"description": "Recipient user URN (must include prefix, e.g. fsd_profile:ACoAA...)",
"type": "string"
}
},
"required": [
"user",
"text"
],
"type": "object"
}