Grow your business on WhatsApp
Growing your business…
Seamless Pay-In • Instant Payouts • Connected Banking • BBPS — All in One Unified Fintech Platform

const request = require("request");
const options = {
method: "POST",
url: "https://api.digiway.in/pg/orders",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
amount: 10000,
currency: "INR",
receipt: "receipt#1",
notes: { key1: "value3", key2: "value2" }
})
};
import { Digiway } from "@digiway/sdk";
const dw = new Digiway("pk_live_xxxxxxxxxx");
// Execute a high-volume payout seamlessly
const payout = await dw.payouts.create({
account: "acc_123456789",
amount: 50000,
currency: "INR",
purpose: "vendor_settlement"
});
console.log("Payout initiated:", payout.id);
curl -X POST https://api.digiway.in/v1/customers \
-H "Authorization: Bearer sk_live_xxxxxxxxxx" \
-H "Content-Type: application/json" \
-d '{
"name": "Acme Corp",
"email": "billing@acmecorp.com"
}'
# Returns a unique Customer ID for future txns
curl -X POST https://api.digiway.in/v1/customers \
-H "Authorization: Bearer sk_live_xxxxxxxxxx" \
-H "Content-Type: application/json" \
-d '{
"name": "Acme Corp",
"email": "billing@acmecorp.com"
}'
# Returns a unique Customer ID for future txns