WorkOS webhook payload example (user.created)

WorkOS · event: user.created · 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 WorkOS's webhook settings to capture a real delivery. No signup.

Headers

content-type: application/json
workos-signature: t=1788092049617,v1=da1dcde4857ffc36ec11afa3d75c6428dadb3a4acef5e874e83c45a505b7e169

Body

{
  "id": "event_01K3W9YQ5H8Z2M4T6R7XVBNP0D",
  "event": "user.created",
  "data": {
    "object": "user",
    "id": "user_01K3W9YQ4C2F8J6P0S5DZHTMRE",
    "email": "marcelina.davis@example.com",
    "first_name": "Marcelina",
    "last_name": "Davis",
    "email_verified": true,
    "profile_picture_url": null,
    "external_id": null,
    "metadata": {},
    "created_at": "2026-08-30T12:14:09.512Z",
    "updated_at": "2026-08-30T12:14:09.512Z"
  },
  "created_at": "2026-08-30T12:14:09.617Z"
}

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 'workos-signature: t=1788092049617,v1=da1dcde4857ffc36ec11afa3d75c6428dadb3a4acef5e874e83c45a505b7e169' \
 -d '{
  "id": "event_01K3W9YQ5H8Z2M4T6R7XVBNP0D",
  "event": "user.created",
  "data": {
    "object": "user",
    "id": "user_01K3W9YQ4C2F8J6P0S5DZHTMRE",
    "email": "marcelina.davis@example.com",
    "first_name": "Marcelina",
    "last_name": "Davis",
    "email_verified": true,
    "profile_picture_url": null,
    "external_id": null,
    "metadata": {},
    "created_at": "2026-08-30T12:14:09.512Z",
    "updated_at": "2026-08-30T12:14:09.512Z"
  },
  "created_at": "2026-08-30T12:14:09.617Z"
}'

← All payload examples · Signature debugger · Docs