export_all_campaigns
Export all campaigns to CSV format for a specific user and account, providing comprehensive campaign data for analysis and reporting.
Instructions
Export all campaigns in CSV format
Args: user_id: The ID of the user account_id: The ID of the account (seat)
Returns: CSV export of all campaigns or download URL
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | Yes | ||
| account_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"type": "string"
},
"user_id": {
"type": "string"
}
},
"required": [
"user_id",
"account_id"
],
"type": "object"
}