Stripe thin event (v2) webhook payload example

Stripe · event: v2.core.account.updated (thin event) · content type: application/json; charset=utf-8

This is a representative sample — fake IDs, real structure. To see a payload with your data, point the provider at a capture URL (button below).

See it live, not frozen

One click creates a free capture bin with this exact payload already in it — pretty-printed, headers inspectable, replayable to your own endpoint:

Then paste the bin's URL into Stripe's webhook settings to capture a real delivery. No signup.

Headers

content-type: application/json; charset=utf-8
user-agent: Stripe/1.0 (+https://stripe.com/docs/webhooks)
stripe-signature: t=1788122465,v1=3c1d7dce7be1ebbead91b961dc6fbab7a2b8d49285ec73ee088716a2852f6814

Body

{
  "id": "evt_test_65Rk9rTAqLxCeQHIjK416TgmEI4ASQ3jHxXt8RFwXoeVwO9",
  "object": "v2.core.event",
  "type": "v2.core.account.updated",
  "livemode": false,
  "created": "2026-08-30T20:41:05.128Z",
  "context": null,
  "reason": {
    "type": "request",
    "request": {
      "id": "req_x9y2z15XqG3Futmjg",
      "idempotency_key": "ik_TgmEI3jHxXt8RFw4jS7ve2QcAReDQWBjPAkAEUm"
    }
  },
  "related_object": {
    "id": "acct_1T93Q4Pmpb34Vto6",
    "type": "v2.core.account",
    "url": "/v2/core/accounts/acct_1T93Q4Pmpb34Vto6"
  }
}

Things that bite people

Send it yourself

Reproduce this delivery against any endpoint (your handler, a bin, staging):

$ curl -X POST https://your-endpoint.example/hook \
  -H 'content-type: application/json; charset=utf-8' \
  -H 'user-agent: Stripe/1.0 (+https://stripe.com/docs/webhooks)' \
  -H 'stripe-signature: t=1788122465,v1=3c1d7dce7be1ebbead91b961dc6fbab7a2b8d49285ec73ee088716a2852f6814' \
 -d '{
  "id": "evt_test_65Rk9rTAqLxCeQHIjK416TgmEI4ASQ3jHxXt8RFwXoeVwO9",
  "object": "v2.core.event",
  "type": "v2.core.account.updated",
  "livemode": false,
  "created": "2026-08-30T20:41:05.128Z",
  "context": null,
  "reason": {
    "type": "request",
    "request": {
      "id": "req_x9y2z15XqG3Futmjg",
      "idempotency_key": "ik_TgmEI3jHxXt8RFw4jS7ve2QcAReDQWBjPAkAEUm"
    }
  },
  "related_object": {
    "id": "acct_1T93Q4Pmpb34Vto6",
    "type": "v2.core.account",
    "url": "/v2/core/accounts/acct_1T93Q4Pmpb34Vto6"
  }
}'

← All payload examples · Related guide · Signature debugger · Docs