Using npm:
npm i @kkiapay-org/nodejs-sdk
// setup your api key (https://www.kkiapay.me)
//initialize kkiapay in production environnment
const k = kkiapay({
privatekey: 'xxxxxxx',
publickey: 'xxxxxxx',
secretkey: 'xxxxxxx',
});
//initialize kkiapay in sandbox environnment
const k = kkiapay({
privatekey: 'xxxxxxx',
publickey: 'xxxxxxx',
secretkey: 'xxxxxxx',
sandbox: true,
});
// Request to retrieve transactions
k.verify('transactionId')
.then((response) => {
//handle response
})
.catch((error) => {
//handle error
});
// Request to retrieve transactions
k.refund('transactionId')
.then((response) => {
//handle response
})
.catch((error) => {
//handle error
});
STATUS | DESCRIPTION |
---|---|
SUCCESS | Successful transaction |
FAILED | Transaction failed |
INSUFFICIENT_FUND | Not enough money in developper account |
TRANSACTION_NOT_ELIGIBLE | This transaction are already reverted or are not eligible |
TRANSACTION_NOT_FOUND | Transaction not found |
INVALID_TRANSACTION | You are not owner of this transaction |
INVALID_TRANSACTION_TYPE | We can't revert this transaction |
INVALID_PAYOUT_DESTINATION_ACCOUNT | Provided destination account is not valid mobile money account |