-
-
Notifications
You must be signed in to change notification settings - Fork 87
Payment Supporting Operations
Shipu Ahamed edited this page Sep 29, 2019
·
3 revisions
$payment
initialization here.
In laravel use Shipu\Bkash\Facades\Payment
instead of $payment
if you want.
$payment->support()->queryOrganizationBalance();
or
$payment->queryOrganizationBalance();
$payment->support()->intraAccountTransfer( $amount, $transferType, $currency );
or
$payment->intraAccountTransfer( $amount, $transferType, $currency);
$currency
is optional. $currency
default value BDT
.
$payment->support()->searchTransaction( $trxId );
or
$payment->searchTransaction( $trxId );
you can get $trxId
after checkout execute payment api call.
$payment->support()->refund( $trxId, $amount, $currency );
or
$payment->refund( $trxId, $amount, $currency );
you can get $trxId
after checkout execute payment api call. $currency
is optional. $currency
default value BDT
.