FusionPay is a JavaScript library for handling payment operations, providing a simple and intuitive API to facilitate online payments for moneyfusion.net.
You can install FusionPay via npm or yarn.:
npm install fusionpay
yarn add fusionpay
Initializing FusionPay To start using FusionPay, you need to initialize a new instance with your API URL:
const { FusionPay } = require("fusionpay");
//OR import { FusionPay } from "fusionpay";
const fusionPay = new FusionPay("https://your-api-url.com");
You can set the payment data using the various methods provided by FusionPay:
fusionPay
.totalPrice(200)
.addArticle("Sac", 100)
.addArticle("Veste", 200)
.addInfo({ userId: "1245d858sf8f95f9ff", token: "dffqsyyyysfs56556sjsjh" })
.clientName("M. Yaya")
.clientNumber("0574801791")
.returnUrl("https://my_call_back_link.com");
To make a payment, use the makePayment() method:
fusionPay
.makePayment()
.then((response) => {
console.log("Payment successful:", response);
})
.catch((error) => {
console.error("Payment failed:", error);
});
To check the payment status, use the checkPaymentStatus() method:
const paymentToken = "your_payment_token_here";
fusionPay
.checkPaymentStatus(paymentToken)
.then((status) => {
console.log("Payment status:", status);
})
.catch((error) => {
console.error("Failed to check payment status:", error);
});
FusionPay(apiUrl: string)
apiUrl: The API URL for payment.
totalPrice(amount: number): FusionPay
addArticle(name: string, value: number): FusionPay
addInfo(info: Record<string, string>): FusionPay
clientName(name: string): FusionPay
clientNumber(number: string): FusionPay
returnUrl(url: string): FusionPay
makePayment(): Promise<AxiosResponse>
checkPaymentStatus(token: string): Promise<AxiosResponse>
This project is licensed under the MIT License. See the LICENSE file for details.