This endpoint allows you to view all your scheduled emails, filter by status, and paginate through results.
Authentication
This endpoint requires authentication via:- API key auth: Bearer token in Authorization header
Query Parameters
Maximum number of results to return per page. Range: 1-100.
Number of results to skip for pagination. Must be non-negative.
Filter scheduled emails by status. Available values:
scheduled
- Emails waiting to be sentsent
- Successfully sent emailsfailed
- Failed delivery attemptscancelled
- Cancelled scheduled emails
If not provided, returns emails with all statuses.
Headers
Bearer token for API authentication.
Request Example
Response
Array of scheduled email objects.
Pagination information for the current request.
Usage Examples
Pagination Through Results
Pagination Through Results
Filter by Status
Filter by Status
Monitor Scheduled Email Status
Monitor Scheduled Email Status
Important Notes
Real-time Updates: The status of scheduled emails is updated in real-time as emails are processed and sent.
Status Transitions: Scheduled emails progress through states:
scheduled
→ sent
(success) or scheduled
→ failed
(after max retry attempts).Monitoring: Use this endpoint to build dashboards and monitoring systems for your scheduled email campaigns.