v1

latestSwagger 2.0Private2026-08-04128286690.5 KB
Email Campaigns

GET a Collection of Email Campaigns

Use this method to list and get details about your email campaigns. By default, this method returns all email campaigns for the user account including deleted email campaigns. To get email campaigns within a date-range, use the after_date and before_date query parameters.

This endpoint does not return campaign activity details for each email campaign in the collection. To get email campaign activity details for a single email campaign, use the GET /emails/{campaign_id} endpoint."

<div class="Msg"><p class="note-text">This method does not currently support filtering results using the email campaign creation date.</p></div>
get/emails

Query parameters

limitinteger

Specifies the number of campaigns to display on each page of output that is returned (from return 1 - 500). The default returns 50 campaigns per page.

before_datestring date-time

Use to return email campaigns with updated_at timestamps that are before a specific date and time (in ISO-8601 format). Use with the after_date query parameter to get email campaigns sent within a specific date range.

after_datestring date-time

Use to return email campaigns with last updated_at timestamps that are after a specific date and time (in ISO-8601 format). Use with the before_date query parameter to get email campaigns sent within a specific date range.

Response

Request successful.

Example response

{
  "campaigns": [
    {
      "campaign_id": "8987dc1a-48ef-433a-b836-7ca4f9aa3481",
      "created_at": "2018-02-06T22:09:15.000Z",
      "current_status": "Draft",
      "name": "December Newsletter for Dog Lovers",
      "type": "NEWSLETTER",
      "type_code": 10,
      "updated_at": "2018-06-27T10:28:09.000Z"
    }
  ]
}