The White Label service allows you to incorporate OxaPay's payment solution directly into your platform, letting users complete payments without being redirected to our payment page. You can customize the look and feel of the payment process to match your brand, providing a unique experience for your customers.
Steps for Requesting the White Label Service:
-
Obtain Your Merchant API Key
-
First, make sure you have your unique Merchant API Key from your OxaPay dashboard. This will authenticate your requests.
-
-
Create an Invoice via API
-
Use the
https://api.oxapay.com/v1/payment/white-label
endpoint. -
Include your
merchant_api_key
in the request header. -
Specify other details like
amount
,pay_currency
,network
, and your callback_url to receive payment updates. (pay_currency
is the coin the client has chosen to pay with)
-
-
Receive the Track ID and Payment Info
-
Once the invoice is created, you’ll get a track_id along with the payment address.
-
You can use this to display payment information on your checkout page, handling the design and user flow however you like.
-
-
Listen for Payment Updates
-
Your server will receive status updates through the callback_url you provided.
-
You can update your system and user interface in real-time based on these notifications.
-