DocuSign Connect webhook payload example (envelope-completed)

DocuSign · event: envelope-completed (Connect 2.0 / JSON SIM) · content type: application/json

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 DocuSign's webhook settings to capture a real delivery. No signup.

Headers

content-type: application/json
x-docusign-signature-1: 6ENjI1O3fangjNnblmEG6rppVtItKBNRgJmdmf6U0UM=
x-authorization-digest: HMACSHA256

Body

{
  "event": "envelope-completed",
  "apiVersion": "v2.1",
  "uri": "/restapi/v2.1/accounts/8fa9c2e1-5c7b-4a0d-9e3f-2b6d81c4a7f0/envelopes/1d5e0f3a-92b7-4c48-a6d1-7e9f30b2c5a8",
  "retryCount": 0,
  "configurationId": 12873452,
  "generatedDateTime": "2026-08-30T11:21:57.8437219Z",
  "data": {
    "accountId": "8fa9c2e1-5c7b-4a0d-9e3f-2b6d81c4a7f0",
    "userId": "6f2a9c81-3d5e-47b0-8a1c-95e7d20b4f63",
    "envelopeId": "1d5e0f3a-92b7-4c48-a6d1-7e9f30b2c5a8"
  }
}

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' \
  -H 'x-docusign-signature-1: 6ENjI1O3fangjNnblmEG6rppVtItKBNRgJmdmf6U0UM=' \
  -H 'x-authorization-digest: HMACSHA256' \
 -d '{
  "event": "envelope-completed",
  "apiVersion": "v2.1",
  "uri": "/restapi/v2.1/accounts/8fa9c2e1-5c7b-4a0d-9e3f-2b6d81c4a7f0/envelopes/1d5e0f3a-92b7-4c48-a6d1-7e9f30b2c5a8",
  "retryCount": 0,
  "configurationId": 12873452,
  "generatedDateTime": "2026-08-30T11:21:57.8437219Z",
  "data": {
    "accountId": "8fa9c2e1-5c7b-4a0d-9e3f-2b6d81c4a7f0",
    "userId": "6f2a9c81-3d5e-47b0-8a1c-95e7d20b4f63",
    "envelopeId": "1d5e0f3a-92b7-4c48-a6d1-7e9f30b2c5a8"
  }
}'

← All payload examples · Signature debugger · Docs