Kit · Example Payload

List Sequence Emails

Email MarketingCreator EconomySubscribersAutomationNewslettersSequencesFormsBroadcasts

List Sequence Emails is an example object payload from Kit, with 5 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

summarymethodpathtagresponse

Example Payload

Raw ↑
{
  "summary": "List sequence emails",
  "method": "GET",
  "path": "/v4/sequences/{sequence_id}/emails",
  "tag": "Sequence Emails",
  "response": {
    "emails": [
      {
        "id": 1,
        "sequence_id": 1,
        "subject": "string",
        "preview_text": "string",
        "email_address": "string"
      }
    ],
    "pagination": {
      "has_previous_page": true,
      "has_next_page": true,
      "start_cursor": "string",
      "end_cursor": "string",
      "per_page": 1
    }
  }
}