Step 4: Redirect to Checkout
Step 4: Redirect to Checkout
Once you receive the paymentUrl, redirect your customer to it.
Supported Behaviors
- Open in the same tab or a new tab
- Works on desktop and mobile
- Mobile deep-linking supported
The checkout is fully hosted by Apara — no additional frontend code required.
What the Customer Sees
- Customer details form (skipped if pre-filled)
- Payment method selection (250+ APMs and crypto)
- Payment completion
- Confirmation screen
Example (Node.js)
const { paymentUrl } = response.data;
res.redirect(paymentUrl);
Example (Frontend)
window.location.href = paymentUrl; // same tab
window.open(paymentUrl, '_blank'); // new tab
Was this page helpful?