b2bBuyGoodsTransaction method
A transfer of funds from one Organization's Working Account to another Organization's Merchant Account.
shortCode
This is the customer business number to receive the amount.
amount
The amount of money being sent to the customer.
remarks
Comments that are sent along with the transaction. Sentence of up to 100 characters
queueTimeOutURL
This is the URL to be specified in your request that will be used by API Proxy to send notification incase the payment request is timed out while awaiting processing in the queue.
resultURL
This is the URL to be specified in your request that will be used by M-PESA to send notification upon processing of the payment request.
Implementation
Future<MpesaResponse> b2bBuyGoodsTransaction({
required String shortCode,
required double amount,
required String remarks,
required String queueTimeOutURL,
required String resultURL,
}) {
var _bc = MpesaB2B.buyGoods(
this,
shortCode: shortCode,
amount: amount,
remarks: remarks,
queueTimeOutURL: queueTimeOutURL,
resultURL: resultURL,
);
return _bc.process();
}