Kit · Example Payload

Create A Webhook

Email MarketingCreator EconomySubscribersAutomationNewslettersSequencesFormsBroadcasts

Create A Webhook 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 webhook",
  "method": "POST",
  "path": "/v4/webhooks",
  "tag": "Webhooks",
  "request_body": {
    "target_url": "string",
    "event": {
      "name": "string",
      "form_id": null,
      "tag_id": null,
      "sequence_id": null,
      "product_id": null
    }
  },
  "response": {
    "webhook": {
      "id": 1,
      "account_id": 1,
      "event": {
        "name": "string",
        "initiator_value": null
      },
      "target_url": "string"
    }
  }
}