Simulate Account Deposit
Endpoint
POST {{}}/v1/payout/sandbox/deposit
Description
This endpoint simulates the process of adding funds to an issued account in the sandbox environment.
Request Body
The request body should be a JSON object containing the following fields:
accountNumber
: "GB12045505050505128"amount
: 500
Example Request
{
"accountNumber": "GB12045505050505128",
"amount": 500
}
Response
On success, the API will return a JSON object containing the details of the requested corporate account.
{
"status": true,
"message": "Balance Updated",
"data": {
"id": 130,
"account_number": "GB12045505050505128",
"account_bic": "ARPYGB21XXX",
"account_name": "Joseph Osunu",
"balance": 500,
"user": "11",
"createdAt": "2024-08-19T11:19:34.302729Z",
"updatedAt": "2024-08-19T11:19:34.302728Z"
},
"code": 200
}
Last updated