Add Money
Overview
This route will allow user to be able to add money to the buyer wallet from the buyers account.
Resource Access
POST https://<hostname>/payment/v1/buyer/<buyerID>/wallet/<walletID>/addMoney
Parameters
The requested criteria can be a combination of one or more of the following fields:
Field | Sub-field | Additional Information |
---|---|---|
amount | Mandatory | |
paymentMethod | Mandatory | |
accountId | Mandatory |
Example Request
POST https://<hostname>/payment/v1/buyer/569e8037-d76d-5239-8c0f-805a4db9cfa4/wallet/KLKI@cpxwallet/addMoney
{
"amount":1.01,
"paymentMethod":"ACH",
"accountId":"f003282d70baa98228c50b4f83b2d23e252d8ab1afda03b51f914e452eeb6385"
}
Example for Response
{
"paymentStatus": "Sent",
"paymentId": 230002109
}
Updated 3 days ago