For the complete documentation index, see llms.txt. This page is also available as Markdown.

Enable Webhooks

To receive Delos webhooks you need to send a subscription request via an API request

Subscription request body:

{
  "parameters": {
    //Enable sends webhooks to your server
    "enabled": true,
    //Your server address where webhooks will be sent
    "hookUrl": "string",
    //JWT Secret for validate JWT Tokens from incoming request
    "jwtSecret": "string",
    //Enable receive Customers events
    "hookCustomer": true,
    //Enable receive Operations events
    "hookOperation": true,
    //Enable receive Deposit Accounts events
    "hookDepositAccount": true,
    //Enable receive Counterparties events
    "hookCounterparty": true
  }
}

JWT Secret

This field is required.

Using this secret key, you can validate incoming requests for the authenticity of the sender. IMPORTANT! Please set a complex key for encoding requests.

Last updated