To ensure your customers return to your website after completing a transaction, you can set up redirects. There are two options:

  • Configuring redirects in the Plaza
  • Including redirects in the transaction request.

Configuring Redirects in the Plaza

The Redirect settings can be found in the Buckaroo Plaza at: Settings > Websites > Redirect.

  • URI success/pending: If only one endpoint is specified, this URL is the default endpoint. If a reject URL, cancel URL or failure URL are also specified, the customer will be redirected to the corresponding URL.
    If all four URLs are used, both pending and success statuses will be redirected to the default URL.
  • URI reject: The customer is redirected to this URL if the transaction is rejected.
  • URI cancel: Customers are redirected to this URL if they cancel the transaction themselves.
  • URI failure: The customer is redirected to this URL if the transaction fails.

Including Redirects in the Transaction Request

It’s also possible to include the above-mentioned URLs in the transaction request. This is especially recommended if you want to build a custom integration. This information can be included in the basic fields of a request, here are some examples (dummy pages):

...
"ReturnURL": "https://buckaroo.nl/thanks",
"ReturnURLCancel": "https://buckaroo.nl/failure",
"ReturnURLError": "https://buckaroo.nl/error",
"ReturnURLReject": "https://buckaroo.nl/rejected",
...