Benchmark Email · Example Payload

Create Webhook

POST /Contact/{ListID}/Webhooks - Creates a webhook to receive real-time event notifications for a contact list

Email MarketingCampaignsContactsAutomationTransactional EmailMarketing

Create Webhook is an example object payload from Benchmark Email, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

exampledescriptionrequestresponse

Example Payload

Raw ↑
{
  "example": "Create a webhook",
  "description": "POST /Contact/{ListID}/Webhooks - Creates a webhook to receive real-time event notifications for a contact list",
  "request": {
    "method": "POST",
    "url": "https://clientapi.benchmarkemail.com/Contact/123456/Webhooks",
    "headers": {
      "AuthToken": "YOUR_API_TOKEN",
      "Content-Type": "application/json"
    },
    "body": {
      "Data": {
        "URL": "https://yourapp.example.com/webhooks/benchmark-email",
        "Events": ["Subscribe", "Unsubscribe", "Bounce"]
      }
    }
  },
  "response": {
    "status": 200,
    "body": {
      "Response": {
        "Status": "Success",
        "Data": {
          "ID": 999,
          "URL": "https://yourapp.example.com/webhooks/benchmark-email",
          "Events": ["Subscribe", "Unsubscribe", "Bounce"],
          "Status": "Active"
        }
      }
    }
  }
}