Issuin icon

Best practices

Learn about best practices when using Adyen webhooks.

Security

To protect your server from unauthorised webhooks, we strongly recommend that you use Hash-based message authentication code (HMAC) signatures. By verifying the signature included in a webhook, you'll confirm that the webhook was sent by Adyen, and was not modified during transmission. For more information, refer to Verify HMAC signatures.

We also recommend that you use basic authentication over HTTPS. After you have set up a username and password for basic authentication in your Balance Platform Customer Area, we include these in the header of the webhook, so you can authenticate the request with your server. For this to be secure, you need to use HTTPS for your webhooks endpoint, otherwise your basic authentication credentials can be compromised.

Basic authentication only guarantees that the webhook was sent by Adyen, not that it wasn't modified during transmission.

Changing your HMAC key

If you need to change the secret HMAC key used to sign webhooks, you can generate a new HMAC key in your Balance Platform Customer Area.

If you generate a new HMAC key, it might take some time to propagate this in our infrastructure, so make sure that you can still accept webhooks signed with your previous HMAC key for some time.

Configuring your existing webhook endpoint

You can change the endpoint of your existing webhook.

Adyen requires you to use HTTPS endpoints with TLSv1.2 to receive Adyen webhooks. Before you configure your endpoint to receive Adyen webhook webhooks, you need to make sure it supports TLSv1.2 connections.

Update your endpoint URL

  1. Log in to your Balance Platform Customer Area.
  2. Go to Webhooks.
  3. Select the edit webhook icon next to the webhook you want to update.
  4. Under General, select the edit icon and configure the following field:
    • Server configuration: Enter your HTTPS URL.
  5. Select Apply at the bottom of the page.

To change your endpoint and disable your old endpoint for receiving webhooks:

  1. Add a new endpoint in Balance Platform Customer Area.
  2. Disable the old endpoint.

Disabling and deleting webhooks

You might want to disable webhooks when:

  • Your webhook endpoint is temporarily unable to receive webhooks, for example during server maintenance.
  • You have set up a new webhook endpoint for webhooks.

To disable webhooks:

  1. Log in to your Balance Platform Customer Area.
  2. Go to Webhooks.
  3. Next to the webhook you want to disable, toggle the Enabled slidebar to the left.
  4. Select Disable in the pop-up window.

We will then queue all webhooks to this endpoint. You will receive the queued webhooks when you reactivate this endpoint by toggling the Active slidebar.

If you change the URL while the webhooks are disabled, you will not receive the queued webhooks, as these will be sent to the old URL.

To delete webhooks:

  1. Log in to your Balance Platform Customer Area.
  2. Go to Webhooks.
  3. Next to the webhook you want to disable, select the bin icon .
  4. Select Delete in the pop-up window.

Queued webhooks

To ensure that webhooks are properly delivered, your server should acknowledge them with an appropriate response message.

If we don't receive the response message within 10 seconds, all webhooks to this endpoint will be queued.

We'll then retry sending the webhook until it is accepted. Once accepted, you'll also receive all the queued webhooks.

Retry attempts happen regularly for up to 7 days, at increasing time intervals:

  • 2 minutes
  • 5 minutes
  • 10 minutes
  • 15 minutes
  • 30 minutes
  • 1 hour
  • 2 hours
  • 4 hours

After that, retries happen every 8 hours for the following 7 days.

The webhook queues are maintained separately for each endpoint. If you have multiple endpoints for receiving webhooks and we have queued webhooks for one of them, this won't affect the remaining endpoints.