list_emails
Retrieve filtered email lists from campaigns or accounts with pagination controls to manage and analyze email data efficiently.
Instructions
List emails with filters and pagination
Input Schema
Name | Required | Description | Default |
---|---|---|---|
account_id | No | Filter by account | |
campaign_id | No | Filter by campaign | |
limit | No | Number of emails to return (1-100, default: 20) | |
starting_after | No | ID of the last item from previous page for pagination |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"description": "Filter by account",
"type": "string"
},
"campaign_id": {
"description": "Filter by campaign",
"type": "string"
},
"limit": {
"description": "Number of emails to return (1-100, default: 20)",
"type": "number"
},
"starting_after": {
"description": "ID of the last item from previous page for pagination",
"type": "string"
}
},
"type": "object"
}