Once you have obtained a payment token through the API endpoint, you can initiate the payment process on your platform. This guide will walk you through the steps to collect payments using the token, showcasing both iframe and standalone page approaches.
Integration Methods
Using an Iframe
To integrate PayPangea's payment process within your application seamlessly, you can use an iframe. This method provides a cohesive user experience, keeping the user within your application environment throughout the payment process.
Steps:
Embed the Iframe: Insert an iframe into your HTML, setting its src attribute to https://paypangea.com/request/paysdk/?tkn=${TOKEN}, where ${TOKEN} is the payment token you obtained from the API.
Alternatively, you can redirect users to a standalone payment page hosted by PayPangea. This method is straightforward and does not require embedding within your site.
Steps:
Redirect to PayPangea: Redirect users to https://paypangea.com?tkn=${TOKEN} for payment. Ensure the user's browser navigates to this URL, where ${TOKEN} is your obtained payment token.
Set a Redirect URL (Optional): If you prefer to redirect users back to your site upon completion, specify a redirect URL during the token generation step in the API. PayPangea will redirect users to this URL after the payment process, allowing you to handle post-payment actions on your site.