get_automation_email_queue
Retrieve subscribers queued to receive a specific automation email, with scheduled send times. Use automation ID and email ID from prior calls.
Instructions
Retrieve the queue of subscribers about to receive a specific automation email, with scheduled send times.
Use to see who is waiting to receive a particular email in a workflow. Use get_automation_emails first to find email_id values within the workflow.
Authenticated via API key. Subject to Mailchimp API rate limits (max 10 concurrent requests). Read-only, safe to retry.
Args: automation_id: The automation workflow ID (e.g. 'auto123'). Obtain from list_automations. email_id: The specific email ID within the automation. Obtain from get_automation_emails.
Returns: JSON with total_items (int) and queue array. Each entry: email_address (string), next_send (ISO 8601 timestamp of scheduled send).
Example: get_automation_email_queue(automation_id="auto123", email_id="email456") -> {"total_items": 12, "queue": [{"email_address": "jane@co.com", "next_send": "2025-06-02T10:00:00Z"}]}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| automation_id | Yes | ||
| email_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |