1.0.4 • Published 2 months ago

idpay-tools v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago
  • ساختن پیمنت
  • وریفای کردن بعد از پرداخت
  • چک کردن پیمنت
npm install idpay-tools
const { idpay } = require("idpay-tools");

const a = new idpay("xxxxxxxx-0000-0000-x000-xxxxxxxxxxxx", true)
async function test() {

    const b = await a.createTransaction({
        'order_id': '101',
        'amount': 10000,
        'name': 'طاها اصلانی',
        'phone': '09382198592',
        'mail': 'my@site.com',
        'desc': 'توضیحات پرداخت کننده',
        'callback': 'https://example.com/callback',
    })
    
    console.log(b)
    id = b.id;

    const c = await a.verifyPayment({
        'id': id,
        'order_id': '101'
    })
    console.log(c)

    const d = await a.transactionStatus({
        'id': id,
        'order_id': '101'
    });
    console.log(d)
}

test()
1.0.4

2 months ago

1.0.2

2 months ago

1.0.3

2 months ago

1.0.1

2 months ago

1.0.0

2 months ago