Kit · Example Payload

Create A Broadcast

Email MarketingCreator EconomySubscribersAutomationNewslettersSequencesFormsBroadcasts

Create A Broadcast 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 broadcast",
  "method": "POST",
  "path": "/v4/broadcasts",
  "tag": "Broadcasts",
  "request_body": {
    "email_template_id": 1,
    "email_address": "string",
    "content": "string",
    "description": "string",
    "public": true
  },
  "response": {
    "broadcast": {
      "id": 1,
      "publication_id": 1,
      "created_at": "string",
      "subject": "string",
      "preview_text": "string"
    }
  }
}