Kit · Example Payload

List Subscribers For A Sequence

Email MarketingCreator EconomySubscribersAutomationNewslettersSequencesFormsBroadcasts

List Subscribers For A Sequence 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 subscribers for a sequence",
  "method": "GET",
  "path": "/v4/sequences/{sequence_id}/subscribers",
  "tag": "Sequences",
  "response": {
    "subscribers": [
      {
        "id": 1,
        "first_name": "string",
        "email_address": "string",
        "state": "active",
        "created_at": "string"
      }
    ],
    "pagination": {
      "has_previous_page": true,
      "has_next_page": true,
      "start_cursor": "string",
      "end_cursor": "string",
      "per_page": 1
    }
  }
}