Skip to main content

Get started

You can accept payments today on KidaPay easily. KidaPay is a pre-built payment page and complete checkout experience that can be branded for your business. Integrate once, gain new features as KidaPay evolves

Use the following steps to create a Checkout page that lets a customer make a one-time payment or subscribe to recurring payment plans:

  • Register and Get API Key
  • Integrate with KidaPay Checkout on your website.
  • Integration test for KidaPay.

Step 1. Register and Get API Key

Register your KidaPay merchant account by visiting (https://app-dev.kidapay.com/), sign up and verify your email.

alt text

1.1 Sign in to your KidaPay merchant account and generate you API key

After you have verified your email address, you will need to sign in to access the account you created

alt text

After successful sign in you will be directed to your account

1.2 Go to the settings page to generate your API key

In your account you will see a sidebar on the left that contains links to different pages, click on the SETTINGS to open the settings page and click on the API tab to generate an API.

alt text

1.3 Click on the API key button to generate your API key

On the API tab you will see the API key button on the right, click on the API key button to generate your API key.

alt text

1.4 Generate your API key and fill in the necessary fields and save it

Click on "Generate new API key", fill in the necessary fields and save it

alt text

1.5 Copy API Auth Token (API key)

Copy the API key you generated in other to use it.

alt text

Step 2. Integrate KidaPay Checkout with your website

KidaPay makes payment easy and faster. With a few steps, you can integrate KidaPay checkout to your website.

The specific steps are different depending on what language you're using.

Steps to take

Follow the guide to integrate KidaPay Checkout to your website.

1. Add the Button that sends request to Create Order.

To integrate Checkout on your website, you need to add a payment button, the button should trigger a Create Order request with purchase order information (It tells us the price amount, description, and merchant ID generated by your service).

1.1 Button that the trigger createOrderAction function in JavaScript.

<button onClick={createOrderAction}>Pay</button>

1.2 createOrderAction function in JavaScript.

async function createOrderAction(
merchant_order_id,
title,
description,
amount,
currency,
pay_currency,
callback_url,
cancel_url,
success_url,
token
) {
const url = 'https://api-dev.kidapay.com/v1/orders'; // API endpoint
const payload = {
merchant_order_id: merchant_order_id,
title: title,
description: description,
amount: amount,
currency: currency,
pay_currency: pay_currency,
callback_url: callback_url,
cancel_url: cancel_url,
success_url: success_url,
token: token
};

try {
const response = await fetch(url, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(payload)
});

if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}

const result = await response.json();
return result;
} catch (error) {
console.error('There was an error!', error);
}
}

2.3 Redirect user to Payment Page

After the Create Order succeeds, you should redirect the customer to KidaPay payment_url URL and redirects the customer to Crypto Payment page, which contains the purchase order information provided by Create Order.

2.4 Payment Callback (Webhook)

When your customer successfully completes their payment, they are redirected to the success URL that you specified. Typically, this is a page on your website that informs the customer that their payment was successful. The cancel URL is the page where Checkout redirects customers when they cancel the payment process.

Once payment is successful, you should fulfill the customer’s purchase. You can use Payment Callback webhooks to fulfill the purchase when callback event triggers.


NOTE

If you can't get the callback request after a payment finished, you should check if you correctly pass the callback_url params when you send a create order request. You also can check the url at Merchants Order History Page by click Triger Payment Callback button


Step 3. Integration test

Once the integration has been completed, there will then be testing from our team to ensure it's functionality. If all checks pass, it will be ready to go.

All the transactions of orders and withdraws can be viewed in the Merchants Portal.