Skip to content

PaymobAccept/paymob-node

Repository files navigation

Paymob Node SDK

The Fast Way To Get Payment Duds Ready, Ever

ForTheBadge powered-by-paymob

Paymob Node is a minimal, straightforward and easy way to config payment intention methods, voiding, refunding and more..

Find the documentation

Installation

Install the SDK and start the game.

npm install paymob-node

Prerequisites

Paymob Node requires Node.js v10+ to run.

Supported languages

  • JavaScript

Setup

To start using the SDK have to import or include and initialize it with your secrete key.

const { Paymob } = require("paymob-node");
const paymob = Paymob("skl_***");

Intention

Paymob Node offers verity of intention methods like create, retrieve and list.

Note: this examples using express, you can use your favorite framework instead.

  • Create
const payload = {
	amount: "2000",
	currency: "EGP",
	payment_methods: ["card", "wallets", "card-installment"],
	items: [
		{
			"name": "ASC1515",
			"amount": "1000",
			"description": "Smart Watch",
			"quantity": "1"
		},
		{
			"name": "ERT6565",
			"amount": "1000",
			"description": "Power Bank",
			"quantity": "1"
		}
	],
	billing_data: {
		"apartment": "74",
		"email": "user@mail.com",
		"floor": "42",
		"first_name": "Jhon",
		"street": "Ethan Land",
		"building": "1907",
		"phone_number": "9135210487",
		"shipping_method": "PKG",
		"postal_code": "01898",
		"city": "Jaskolskiburgh",
		"country": "CR",
		"last_name": "Don",
		"state": "Utah",
	},
	customer: { "first_name": "Jhon", "last_name": "Don", "email": "user@mail.com" },
	delivery_needed: false, 	 	
};

app.get("/marketplace/secret/", (req, res) => {
	paymob.Intention.create(payload).then(paymobApiResponse => {
		res.send(paymobApiResponse);
	}).catch(err => {
		res.send(err);	
	});
});

Releases

No releases published

Packages

No packages published