Copy and Pay
1. Prepare the checkout
First, perform a server-to-server POST request to prepare the checkout with the required data, including the order type, amount and currency. The response to a successful request is a JSON string with an id
, which is required in the second step to create the payment form.
For a full list of parameters that can be sent in the prepare checkout request, please see the API Reference
2. Create the payment form
To create the payment form you just need to add the following lines of HTML/JavaScript to your page and populating the following variables
The checkout's
id
that you got in the response from step 1
The shopperResultUrl
, which is the page on your site where the customer should be redirected to after the payment is processed and the brands that will be available.
View the customization guide for more information on customizing the payment form.
3. Get the payment status
Once the payment has been processed, the customer is redirected to your shopperResultUrl
along with a GET parameter resourcePath
.
Important: The baseUrl must end in a "/", e.g. "https://test.oppwa.com/".
Then, to get the status of the payment, you should make a GET request to the baseUrl + resourcePath
, including your authentication parameters.
Example of a resourcePath:
Once a status response is successful the checkout identifier can't be used anymore. In this case the Transaction Reports endpoint can be used to get the transaction status using the payment id.
IMPORTANT: A throttling rule applies for get payment status calls. Per checkout, it is allowed to send two get payment requests in a minute.
We recommend that you verify the following fields from the Payment Status response, by comparing the returned values with expected:
ID(s)
Amount
Currency
Brand
Type
Last updated
Was this helpful?