Mailchimp · Example Payload

Mailchimp Postwebhooksadd Example

CampaignsEmail MarketingMarketing AutomationNewslettersTransactional Email

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

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "postWebhooksAdd",
  "method": "POST",
  "path": "/webhooks/add",
  "summary": "Mailchimp Add a Webhook",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "PostwebhooksaddRequestExample",
      "example": {
        "key": "example_value",
        "url": "https://www.example.com",
        "description": "A sample description.",
        "events": [
          "send"
        ]
      }
    }
  ],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Postwebhooksadd200Example",
      "example": {
        "id": "abc123",
        "url": "https://www.example.com",
        "description": "A sample description.",
        "auth_key": "example_value",
        "events": [
          "send"
        ],
        "created_at": "2026-01-15T10:30:00Z",
        "last_sent_at": "2026-01-15T10:30:00Z",
        "batches_sent": 10,
        "events_sent": 10,
        "last_error": "example_value"
      }
    }
  ]
}