What does this Action do?

The "Continue payment flow" Action is used to determine when to respond to the payment authorization request.

Rather than only using the authorization request result to determine the outcome of a payment request, this Action allows you to choose when to respond to the payment request. The payment request is returned the status of the payment at the time of this Action running.

There are several use cases where you may want this flexibility, such as your post-authorization fraud check fails and so you want to reject the payment and show a failure screen to your customer.

For customer-initiated transactions (CITs), this Action is ultimately responsible for telling Universal Checkout to display the success or failure screen to the customer.

Workflow example

This Action is required for all payments. If you don't have this Action after your payment is authorized, the payment response will time out, showing an error to your customer but the processor authorization transaction can still be successful.

How to use the Action

Use cases

Based on your needs, you can utilize this Action in a few ways. Below are some examples for inspiration:

💡

The most common use case is to simply use this Action immediately after the "Authorize payment" Action. This will respond to the payment request with the status of the payment after the authorization request. You can then have conditional logic to capture afterwards.

Use Case 1

💡

Review processor CVS and AVS checks post-authorization and cancel the payment if it fails the checks. In this scenario, this Action allows you to show a failure screen to your customer if the payment is cancelled and a success screen if not.

Use Case 2

💡

Vault cards using an 'auth-and-cancel' payment flow and show a success screen to your customer if the card is vaulted successfully whilst handling the cancellation in the same flow.

Use Case 3