get_conversations_by_identifiers
Retrieve conversations associated with specific identifiers like LinkedIn profile IDs or email addresses for lead management and communication tracking.
Instructions
Retrieve conversations using specific identifiers
This finds all conversations associated with the provided identifiers (e.g., LinkedIn profile IDs, email addresses).
Args: user_id: User ID account_id: Account ID identifiers: List of identifiers to search for (e.g., LinkedIn IDs)
Returns: Conversations matching the provided identifiers
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | Yes | ||
| account_id | Yes | ||
| identifiers | Yes |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"type": "string"
},
"identifiers": {
"items": {
"type": "string"
},
"type": "array"
},
"user_id": {
"type": "string"
}
},
"required": [
"user_id",
"account_id",
"identifiers"
],
"type": "object"
}