Kit · Example Payload

Create A Subscriber

Email MarketingCreator EconomySubscribersAutomationNewslettersSequencesFormsBroadcasts

Create A Subscriber is an example object payload from Kit, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

summarymethodpathtagrequest_bodyresponse

Example Payload

Raw ↑
{
  "summary": "Create a subscriber",
  "method": "POST",
  "path": "/v4/subscribers",
  "tag": "Subscribers",
  "request_body": {
    "first_name": "string",
    "email_address": "string",
    "state": "active",
    "fields": {}
  },
  "response": {
    "subscriber": {
      "id": 1,
      "first_name": "string",
      "email_address": "string",
      "state": "active",
      "created_at": "string"
    }
  }
}