1.0.3 • Published 3 months ago

@shiba-majiro/slip-verify v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

Slip Vertify📃

A library for verifying Thai bank transfer slips using the RDCW API📦

Installation

npm install @shiba-majiro/slip-verify

Usage

Vertify with a transaction id✅

import SlipVertify, { BankCode } from '@shiba-majiro/slip-verify';

const slipVertify = new SlipVertify('your-client-id', 'your-client-secret');

const isValid = await slipVertify.slipVerify(
  'transactionId',
  'เลขบัญชี',
  'ชื่อบัญชี ไม่เอาคำนำหน้าชื่อกับนามสกุล',
  BankCode.PROMPTPAY,
  true // เช็ค cache
);

Vertify with a file or buffer 🖼️

import SlipVertify, { BankCode } from '@shiba-majiro/slip-vertify';

const slipVertify = new SlipVertify('your-client-id', 'your-client-secret');

const isValid = await slipVertify.slipVerify(
  'file/image.png' || Buffer.from(...),
  'เลขบัญชี',
  'ชื่อบัญชี ไม่เอาคำนำหน้าชื่อกับนามสกุล',
  BankCode.KBANK,
);

License

MIT License

1.0.3

3 months ago

1.0.2

3 months ago