Skip to main content
WEBHOOK
vault.created
{
  "id": "<string>",
  "date": "2023-11-07T05:31:56Z",
  "timestampSent": 123,
  "deliveryAttempt": 2,
  "kind": "vault.created",
  "data": {
    "vault": {
      "id": "vlt-5vbsp-u62g1-ostmunqgds5o9tc2",
      "orgId": "<string>",
      "tags": [
        "<string>"
      ],
      "dateCreated": "2023-11-07T05:31:56Z",
      "dateUpdated": "2023-11-07T05:31:56Z",
      "name": "<string>",
      "externalId": "<string>",
      "addresses": [
        {
          "walletId": "<string>",
          "network": "<string>",
          "address": "<string>"
        }
      ]
    }
  },
  "retryOf": "<string>"
}

Body

application/json
id
string
required

Unique identifier for this webhook event

date
string<date-time>
required

ISO 8601 timestamp when the event occurred

timestampSent
integer
required

Unix timestamp when the event was sent

deliveryAttempt
integer
required

Delivery attempt number

Required range: x >= 1
kind
enum<string>
required
Available options:
vault.created
data
object
required
retryOf
string

ID of the original event if this is a retry

Response

200

Respond with a 200 to indicate that the event was successfully received. If your endpoint returns anything else than a 200 status code, we will consider the delivery has failed and retry later. See details here.

Last modified on July 9, 2026