get_leads_from_thread
Extract leads from a specific conversation thread to identify potential customers and manage business relationships using user, account, and thread identifiers.
Instructions
Retrieve leads who are part of a specific conversation thread
Args: user_id: The ID of the user account_id: The ID of the account (seat) thread_id: The ID of the conversation thread
Returns: List of leads belonging to the thread
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | Yes | ||
| account_id | Yes | ||
| thread_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"type": "string"
},
"thread_id": {
"type": "string"
},
"user_id": {
"type": "string"
}
},
"required": [
"user_id",
"account_id",
"thread_id"
],
"type": "object"
}