Reverse-Authorize transaction can only be performed using Payment ID retrieved from Authorize transaction.
Use the following code snippet to perform a Reverse-Authorize transaction:
@RequiredArgsConstructor
public class ReverseAuthorize {
private final CheckoutComTransactionService checkoutComTransactionService;
public void reverseAuthorize() {
CurrencyUnit currency = Monetary.getCurrency(currencyCode);
MonetaryAmount transactionTotal = Monetary.getDefaultAmountFactory().setCurrency(currency).setNumber(amount).create();
PaymentRequest paymentRequest = new PaymentRequest()
.transactionReferenceId(transactionReferenceId)// this is the unique Transaction Reference ID
.transactionTotal(transactionTotal)
.additionalField(CheckoutConstants.PAYMENT_ID, paymentId) // This is the Payment ID retrieved from Authorize transaction
.tenantId("TENANT"); // Declare the tenant id to help identify where transaction results should be recorded
PaymentResponse paymentResponse = checkoutComTransactionService.reverseAuthorize(paymentRequest);
paymentResponse.isSuccessful();
paymentResponse.getGatewayResponseCode(); //Checkout.com Response Code
paymentResponse.getFailureType(); // Failure type in case the transaction was not successful.
paymentResponse.getRawResponse(); // Checkout.com raw response stored as a JSON object.
paymentResponse.getResponseMap().get(CheckoutConstants.PAYMENT_ID); // Checkout.com Payment ID.
paymentResponse.isAwaitingAsyncResults(); // If true, Checkout.com will return detailed response via Webhook
}
}
To set additional fields in the PaymentRequest, use method
PaymentRequest.additionalField(key, value)
To get values from responseMap, use
PaymentResponse.getResponseMap().get(key, value)
To get the transaction reference ID from response:
PaymentResponse.getTransactionReferenceId()
To get the Broadleaf Payment ID from the response:
PaymentResponse.getPaymentId()