Guides and reports

Pre-authorizations and Authorization Adjustments for Developers

This technical blog post explains how developers can implement a hotel booking payment process using Adyen's API. It covers pre-authorizations, amount adjustments, extending authorization expiry dates, capturing payments, refunding payments and webhook payloads.

Kwok He Chu  ·  Developer Advocate, Adyen
October 18, 2023
 ·  11 minutes
Pre-authorization and Authorization Adjustment Blog Header

At Adyen, we understand that modern businesses across different industries require various payment solutions for different use cases. In a basic payment flow, the amount from your payment request is authorized and then captured. But sometimes you may want to change the amount or extend the length of the authorization. This is known as a pre-authorization, followed by an authorization adjustment.

Introduction

The use of authorization adjustment in various industries may differ. One could increase the amount, decrease the amount after a successful pre-authorization or extend the expiry date of the authorization. 

In the hospitality sector, for example, hotels use pre-authorizations to facilitate payment processes before a guest checks into their hotel. During their stay, if the guest incurs additional expenses at the hotel, these expenses can be added to the pre-authorized amount by adjusting the authorization. Once the guest checks out, the hotel captures the final amount or, optionally, cancels the payment if the guest prefers to settle their bill with a different payment method. 

In other cases such as taxi rides, car rentals, or parking, you can use pre-authorizations to handle situations where the final amount for the service is not known at the time of payment. 

Another common use-case is in the United States. As tax regulation can differ widely between states, it is common that the final amount of an order for clothing and apparel deliveries has to be adjusted due to tax regulation changes in applicable tax due to last minute changes of origin or destination of the package.

Overview

Let’s start by taking a look at a high-level technical overview where a guest reserves a hotel room for $249.99 and chooses to accumulate extra costs during their stay. Here’s an overview of the three main request:

  1. Pre-authorization request: The merchant initiates a pre-authorization request of $249.99.

  2. Authorization adjustment request: Once the pre-authorization is successfully authorized, the merchant sends an authorization adjustment request of $500. 

    • Extension request: Once a pre-authorization request is successfully authorized, the merchant can optionally extend the authorization to increase the expiry window of this authorization. 

  3. Capture request: Once the authorization adjustment is successful. The merchant confirms the final payment by sending a capture request of $500. This will finalize the payment.

    • Reversal request: Optionally, a merchant can cancel or refund the authorization with a reversal request.

Pre-authorization

First, we create a pre-authorization request to the /payments endpoint. We specify a merchant reference to keep track of the payment throughout the whole lifecycle.

Pre-authorization request:

A successful response contains the “Authorised” result code.

Pre-authorization response:

Adyen will send a webhook asynchronously, check the notification success-flag to see whether the authorization has succeeded.

Webhook with "AUTHORISATION" event code:

The webhook contains the PspReference (TJ5MXF5SK3RZNN82) that can be used in the subsequent authorization adjustment call.

Authorization Adjustment

To adjust the amount asynchronously, we create a request object to the /payments/TJ5MXF5SK3RZNN82/amountUpdate endpoint.

Authorization adjustment request:

Authorization adjustment response:

The call is received by Adyen when the response status matches the expected "received" status.

Later on, Adyen sends a webhook with an "AUTHORISATION_ADJUSTMENT" event code  that contains the result of the authorization adjustment. Check the success-flag to see whether the adjustment has been successful and save this accordingly in your backend.

"AUTHORISATION_ADJUSTMENT" webhook:

Validity and Authorization Expiry Dates

Card schemes set specific rules around which businesses (f.e. travel, restaurants, public transportation) are able to adjust an authorization. Your merchant category code (MCC) determines the eligibility, together with the card scheme. You can find an extensive table on availability here.

Adyen expires authorization requests automatically after 28 days from the day the payment is authorized. Note: Please refer to the documentation to see a table as these vary per card scheme. The default expiry period can be adjusted and ensures that Adyen does not automatically expire the authorization after the default 28 days. Our support team can configure this for your merchant account. 

If you try to capture a transaction after the allowed time, it's more likely to fail. However, you can often capture a payment successfully after an authorization has expired. Depending on the card scheme, there can be a fee for late captures, and an increase in interchange and/or scheme fees charged for the transaction. There's also a higher risk of chargebacks from card holders. To manually extend the expiry date of an authorization, make a request to the same /payments/TJ5MXF5SK3RZNN82/amountUpdate endpoint and leave the amount unchanged.

Authorization Adjustment extend request:

Authorization Adjustment extend response:

AUTHORISATION_ADJUSTMENT webhook:

3. Capture

To finalize the payment, make sure you’ve received the webhook for each authorization adjustment that you’ve made. Make a request to the endpoint /payments/TJ5MXF5SK3RZNN82/captures with the final amount of $500 that you wish to capture. Notice that we're using the PspReference of the initial pre-authorization. If you’re using an invalid PspReference, for example, when using the PspReference from the authorization adjustment, you’ll receive a webhook containing a "transaction not found" message.

Capture request:

Capture response:

Adyen sends a webhook with the event code “CAPTURE” when successful or unsuccessful. In some rare cases a "CAPTURE_FAILED" event code (with a success-flag) can occur as well. This can happen because it was either rejected by a card scheme, technical issue, or when capture expires. For a full list of failed capture reasons, refer to this documentation page on what to do next.

Successful "CAPTURE" webhook:

If you provide an invalid PspReference (f.e. when you use the PspReference from an authorization adjustment response), you’ll receive a webhook containing a "transaction not found" message. Likewise, if you attempt to recapture a payment that has already been captured, you will receive an unsuccessful webhook notification with the reason field indicating "Insufficient balance on payment."

Unsuccessful "CAPTURE" webhook:

Reversals

To cancel or refund a payment, send a request to the /payments/TJ5MXF5SK3RZNN82/reversals endpoint. Notice that we're still using the PspReference TJ5MXF5SK3RZNN82 from the initial pre-authorization. This request is useful when you want to return the funds to your guest, but are not certain whether the payment has been captured or not.

This will either: 

  • Cancel the payment – in case it has not yet been captured. 

  • Refund the payment – in case it has already been captured.

Reversal request:

Reversal response:

"CANCEL_OR_REFUND" webhook:

Refund failed or reversed

Now that we’ve seen the flow, here’s a diagram containing the success scenarios.

  1. You send a pre-authorization request to Adyen.

  2. After some time, Adyen sends an AUTHORISATION webhook.

  3. A successful AUTHORISATION webhook can be adjusted.

    • (3A) A successful AUTHORISATION webhook can be captured.

    • (3B) A successful AUTHORISATION webhook can be canceled or refunded.

  4. A successful AUTHORISATION_ADJUSTMENT webhook can be captured.

    • (4A) A successful AUTHORISATION_ADJUSTMENT webhook can be canceled or refunded.

  5. A successful CAPTURE webhook can be canceled or refunded.

  6. After receiving a successful CANCEL_OR_REFUND webhook, the refund can still be rejected by the card scheme. There are two webhooks that may be sent afterwards.

    • REFUND_FAILED webhook.

    • REFUNDED_REVERSED webhook.

"REFUND_FAILED" webhook When Adyen sends a successful REFUND webhook, it means that our validations were successful and we sent the refund request to the card scheme. However, the card scheme can still reject the refund. This can happen even a few days after you submitted the refund request. To handle these failure reasons, refer to our documentation on what to do next. 

To test failed refunds, you can make a pre-authorization request and enter the holder name “refund failed”, to test this scenario.

"REFUNDED_REVERSED" webhook For some payment methods, for example bank transfers, iDEAL, or Bancontact, the status of the payment can change from "REFUND" to "REFUNDED_REVERSED". This means that the funds have been returned to Adyen, and are back in your account. This can happen, for example, if the bank account is no longer valid. 

Below you can find a full chart of the webhooks with the different event codes. Red indicates that the “success”-flag is set to false, while green indicates that the webhook was successful.

You can find a fully working integration-example on our Github page.

Summary

We’ve seen how you can use Adyen pre-authorizations and authorization adjustments to implement a hotel booking use case. We’ve gone over the API responses and webhooks that a developer can encounter. The following steps were described in-depth:

  1. Perform the pre-authorization request

  2. Increase or decrease the amount using authorization adjustments; optionally extend the expiry date of the authorization

  3. Capture the final amount

  4. Perform payment reversals (cancel or refund) 

We’re always looking for ways to improve our existing integration examples or build new integrations for our developers.

Have a look at developers.adyen.com today or let us know on Twitter what you’d like to see next!


Fresh insights, straight to your inbox

By submitting your information you confirm that you have read Adyen's Privacy Policy and agree to the use of your data in all Adyen communications.