get_campaign_conversations
Retrieve all conversations associated with a specific campaign to analyze campaign performance and customer interactions.
Instructions
Retrieve conversations from a specific campaign
This gets all conversations associated with a particular campaign.
Args: user_id: User ID account_id: Account ID campaign_id: Campaign ID to get conversations from limit: Maximum number of results to return (default: 100) offset: Pagination offset (default: 0) name: Optional search filter for contact name
Returns: Conversations from the specified campaign
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | Yes | ||
| account_id | Yes | ||
| campaign_id | Yes | ||
| limit | No | ||
| offset | No | ||
| name | No |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"type": "string"
},
"campaign_id": {
"type": "string"
},
"limit": {
"default": 100,
"type": "integer"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"offset": {
"default": 0,
"type": "integer"
},
"user_id": {
"type": "string"
}
},
"required": [
"user_id",
"account_id",
"campaign_id"
],
"type": "object"
}