validate_campaign_accounts
Check account eligibility for campaign creation by verifying status and requirements to resolve campaign setup issues.
Instructions
Validate which accounts are eligible for campaign creation. This tool helps debug campaign creation issues by showing the status of all accounts and which ones meet the requirements for sending campaigns.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
email_list | No | Optional: Specific email addresses to validate. If not provided, shows all account statuses. |
Input Schema (JSON Schema)
{
"properties": {
"email_list": {
"description": "Optional: Specific email addresses to validate. If not provided, shows all account statuses.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}