Security
Webhooks play a critical role in ensuring the seamless functionality of your integration. However, they can become targets for malicious actors attempting to exploit or disrupt the service. To safeguard your application, you must configure your webhook with a 32-byte secret. This secret is essential for encrypting the request body, adding a layer of security to the data transmission.
Enabling Encryption
When encryption is enabled in your webhook configuration:
Payload Format: The webhook event payload is sent as text/plain containing encrypted data. Initialization Vector (IV): A 16-byte cipher initialization vector (IV) is included in the response headers as metadata. This IV is necessary to decrypt the webhook request body securely.
Below you find an example process for decrypting an incoming webhook request:
Last updated