- Initialize Transaction
- Split Payment
- Verify Payment
- List Banks
- Create Subaccount
- All Transaction
- Transaction Logs
- Transfer
- Bulk Transfer
- Verify Transfer
- All Transfer
- Direct Charge
- Authorize Direct Charge
- Generate Transaction Reference (Utiltiy Function)
- Full TypeScript Support
NPM
$ npm install chapa-nodejs
Yarn
$ yarn add chapa-nodejs
Pnpm
$ pnpm add chapa-nodejs
Once the installation process is complete, we can import the sdk in any file.
Keep in mind to load your secret key from environment variable
import { Chapa } from 'chapa-nodejs';
const chapa = new Chapa({
secretKey: 'your-chapa-secret-key',
});
This utility method of Chapa
instance allows you to generating a customizable random alpha numberic transaction reference.
const tx_ref = await chapa.genTxRef(); // result: TX-JHBUVLM7HYMSWDA
// Or with options
const tx_ref = await chapa.genTxRef({
removePrefix: false, // defaults to `false`
prefix: 'TX', // defaults to `TX`
size: 20, // defaults to `15`
});
To initialize a transaction, we have two possilbe ways. The first one is for web payment, simply call the initialize
method from Chapa
instance, and pass to it InitializeOptions
options. For mobile payment use mobileInitialize
, it accepts and returns the same format as the initialize
method.
// Generate transaction reference using our utility method or provide your own
const tx_ref = await chapa.genTxRef();
const response = await chapa.initialize({
first_name: 'John',
last_name: 'Doe',
email: 'john@gmail.com',
phone_number: '0911121314',
currency: 'ETB',
amount: '200',
tx_ref: tx_ref,
callback_url: 'https://example.com/',
return_url: 'https://example.com/',
customization: {
title: 'Test Title',
description: 'Test Description',
},
});
// Generate transaction reference using our utility method or provide your own
const tx_ref = await chapa.genTxRef();
const response = await chapa.mobileInitialize({
first_name: 'John',
last_name: 'Doe',
email: 'john@gmail.com',
phone_number: '0911121314',
currency: 'ETB',
amount: '200',
tx_ref: tx_ref,
callback_url: 'https://example.com/',
return_url: 'https://example.com/',
customization: {
title: 'Test Title',
description: 'Test Description',
},
});
enum SplitType {
PERCENTAGE = 'percentage',
FLAT = 'flat',
}
interface Subaccount {
id: string;
split_type?: SplitType;
split_value?: number;
}
interface InitializeOptions {
first_name?: string;
last_name?: string;
email?: string;
phone_number?: string;
currency: string;
amount: string;
tx_ref: string;
callback_url?: string;
return_url?: string;
customization?: {
title?: string;
description?: string;
logo?: string;
};
subaccounts?: Subaccount[];
}
interface InitializeResponse {
message: string;
status: string;
data: {
checkout_url: string;
};
}
To verify payment, simply call the verify
method from Chapa
instance, and pass to it VerifyOptions
options.
const response = await chapa.verify({
tx_ref: 'TX-JHBUVLM7HYMSWDA',
});
interface VerifyOptions {
tx_ref: string;
}
interface VerifyResponse {
message: string;
status: string;
data: {
first_name: string;
last_name: string;
email: string;
phone_number: string;
currency: string;
amount: string;
charge: string;
mode: string;
method: string;
type: string;
status: string;
reference: string;
tx_ref: string;
customization: {
title: string;
description: string;
logo: string;
};
meta: any;
created_at: Date;
updated_at: Date;
};
}
This section describes how to get bank details for all supported banks Chapa
is working with. getBanks
method of Chapa
instance returns all the Banks information for all currencies. The method does not accept any options.
const response = await chapa.getBanks();
type Currency = 'ETB' | 'USD';
interface Data {
id: number;
swift: string;
name: string;
acct_length: number;
country_id: number;
created_at: Date;
updated_at: Date;
is_rtgs: boolean | null;
is_mobilemoney: boolean | null;
currency: Currency;
}
interface GetBanksResponse {
message: string;
data: Data[];
}
To create subaccounts, simply call the createSubaccount
method from Chapa
instance, and pass to it CreateSubaccountOptions
options.
const response = await chapa.createSubaccount({
business_name: 'Test Business',
account_name: 'John Doe',
bank_code: '80a510ea-7497-4499-8b49-ac13a3ab7d07', // Get this from the `getBanks()` method
account_number: '0123456789',
split_type: SplitType.PERCENTAGE,
split_value: 0.02,
});
interface CreateSubaccountOptions {
business_name: string;
account_name: string;
bank_code: number;
account_number: string;
split_type: SplitType;
split_value: number;
}
interface CreateSubaccountResponse {
message: string;
status: string;
data: string;
}
Split payments are carried out by first creating a subaccount, then initializing the split payment. The process of implementing split payment is the same as initialize a transaction, with additional options( i.e subaccounts
) to the initialize
method of Chapa
.
// Generate transaction reference using our utility method or provide your own
const tx_ref = await chapa.genTxRef();
const response = chapa.initialize({
first_name: 'John',
last_name: 'Doe',
email: 'john@gmail.com',
phone_number: '0911121314',
currency: 'ETB',
amount: '200',
tx_ref: tx_ref,
callback_url: 'https://example.com/',
return_url: 'https://example.com/',
customization: {
title: 'Test Title',
description: 'Test Description',
},
// Add this for split payment
subaccounts: [
{
id: '80a510ea-7497-4499-8b49-ac13a3ab7d07',
},
],
});
When collecting a payment, you can override the default split_type
and split_value
you set when creating the subaccount, by specifying these fields in the subaccounts item.
subaccounts: [
{
id: '80a510ea-7497-4499-8b49-ac13a3ab7d07',
split_type: SplitType.FLAT,
split_value: 25
},
],
This section describes how to get all transactions. getTransactions
method of Chapa
instance returns all the Transaction information. The method does not accept any options.
const response = await chapa.getTransactions();
interface Customer {
id: number;
email: string;
first_name: string;
last_name: string;
mobile: string;
}
interface Transaction {
status: string;
ref_id: string;
type: string;
created_at: Date;
currency: string;
amount: string;
charge: string;
trans_id: string;
payment_method: string;
customer: Customer;
}
interface Pagination {
per_page: number;
current_page: number;
first_page_url: string;
next_page_url: string;
prev_page_url: string;
}
interface GetTransactionsResponse {
message: string;
status: string;
data: {
transactions: Transaction[];
pagination: Pagination;
};
}
This section describes how to get timeline for a transaction. A transaction timeline is a list of events that happened to a selected transaction. To get list of timeline, simply call the getTransactionLogs
method from Chapa
instance, and pass to it GetTransactionLogsOptions
options.
const response = await chapa.getTransactionLogs({
ref_id: 'chewatatest-6669',
});
interface GetTransactionLogsOptions {
ref_id: string;
}
interface Log {
item: number;
message: string;
type: string;
created_at: string;
updated_at: string;
}
interface GetTransactionLogsResponse {
message: string;
status: string;
data: Log[];
}
This section describes how to send funds to Bank accounts. To initiate a transfer, simply call the transfer
method from Chapa
instance, and pass to it TransferOptions
options.
const response = await chapa.transfer({
account_name: 'John Doe',
account_number: '32423423',
amount: '1',
currency: 'ETB',
reference: '3241342142sfdd',
bank_code: 656,
});
interface TransferOptions {
account_name: string;
account_number: string;
amount: string;
currency: string;
reference: string;
bank_code: number;
}
interface TransferResponse {
message: string;
status: string;
data: string;
}
This section describes how to send funds to Bank accounts in bulk. To do this, you'll provide an array of objects called e bulk_data. Each item in this array contains details for one transfer—the same details you specify when making a single transfer. To initiate a transfer, simply call the bulkTransfer
method from Chapa
instance, and pass to it BulkTransferOptions
options.
const response = await chapa.bulkTransfer({
title: 'This Month Salary!',
currency: 'ETB',
bulk_data: [
{
account_name: 'John Doe',
account_number: '09xxxxxxxx',
amount: 1,
reference: 'b1111124',
bank_code: 128,
},
{
account_name: 'John Doe',
account_number: '09xxxxxxxx',
amount: 1,
reference: 'b2222e5r',
bank_code: 128,
},
],
});
interface BulkData {
account_name: string;
account_number: string;
amount: string;
reference: string;
bank_code: number;
}
interface BulkTransferOptions {
title: string;
currency: string;
bulk_data: BulkData[];
}
interface BulkTransferResponse {
message: string;
status: string;
data: {
id: number;
created_at: string;
};
}
To verify transfer, simply call the verifyTransfer
method from Chapa
instance, and pass to it VerifyTransferOptions
options.
const response = await chapa.verifyTransfer({
tx_ref: 'TX-JHBUVLM7HYMSWDA',
});
interface VerifyTransferOptions {
tx_ref: string;
}
interface Data {
account_name: string;
account_number: string;
mobile: string;
currency: string;
amount: number;
charge: number;
mode: string;
transfer_method: string;
narration: string;
chapa_transfer_id: string;
bank_code: number;
bank_name: string;
cross_party_reference: string;
ip_address: string;
status: string;
tx_ref: string;
created_at: string;
updated_at: string;
}
export interface VerifyTransferResponse {
message: string;
status: string;
data: Data;
}
This section describes how to get all transfers. getTransfers
method of Chapa
instance returns all the transfer information. The method does not accept any options.
const response = await chapa.getTransfers();
interface Meta {
current_page: number;
first_page_url: string;
last_page: number;
last_page_url: string;
next_page_url: string;
path: string;
per_page: number;
prev_page_url: null;
to: number;
total: number;
error: any[];
}
interface Transfer {
account_name: string;
account_number: string;
currency: string;
amount: number;
charge: number;
transfer_type: string;
chapa_reference: string;
bank_code: number;
bank_name: string;
bank_reference: string;
status: string;
reference: string;
created_at: string;
updated_at: string;
}
export interface GetTransfersResponse {
message: string;
status: string;
data: Transfer[];
meta: Meta;
}
This section describes how to integrate direct charges. To initiate a direct charge, simply call the directCharge
method from Chapa
instance, and pass to it DirectChargeOptions
options.
const response = await chapa.directCharge({
first_name: 'Fireayehu',
last_name: 'Zekarias'
email:"test@gmail.com",
mobile: '09xxxxxxxx',
currency: 'ETB',
amount: '1',
tx_ref: '3241342142sfdd',
type: 'telebirr',
});
type DirectChargeType =
| 'telebirr'
| 'mpesa'
| 'Amole'
| 'CBEBirr'
| 'Coopay-Ebirr'
| 'AwashBirr'
| string;
interface DirectChargeOptions {
first_name?: string;
last_name?: string;
email?: string;
mobile: string;
currency: string;
amount: string;
tx_ref: string;
type: DirectChargeType;
}
interface Meta {
message: string;
ref_id: string;
verification_type: string;
status: string;
data: string;
payment_status: string;
}
interface DirectChargeResponse {
message: string;
status: string;
data: {
auth_type: string;
meta: Meta;
};
}
This section describes the necessary actions taken to authorize transactions after payment using direct charge. To authorize direct charge, simply call the authorizeDirectCharge
method from Chapa
instance, and pass to it AuthorizeDirectChargeOptions
options.
const response = await chapa.authorizeDirectCharge({
reference: 'CHcuKjgnN0Dk0',
client: '',
type: 'telebirr',
});
type DirectChargeType =
| 'telebirr'
| 'mpesa'
| 'Amole'
| 'CBEBirr'
| 'Coopay-Ebirr'
| 'AwashBirr'
| string;
interface AuthorizeDirectChargeOptions {
reference: string;
client: string;
type: DirectChargeType;
}
export interface AuthorizeDirectChargeResponse {
message: string;
trx_ref: string;
processor_id: string;
}
- Author - Fireayehu Zekarias
- Github - https://github.com/fireayehu
- Twitter - https://twitter.com/Fireayehu
- LinkedIn - https://www.linkedin.com/in/fireayehu/
chapa-nodejs is MIT licensed.