Simulate Credit

This endpoint allows you to simulate an inflow on the development environment Only

Request Details

FieldData typeRequiredDescription
accountNumberstringYesAccount Number to receive funding
amountstringYesAmount to fund

After collecting the necessary details. Make a POST request to our wallets endpoint.

Note : Before making a post request, the secret key should be specified in the header.

-H "x-api-key: your_secret_key".
{{host}}/v1/wallets/credit

If the API call is successful, Kyshi returns the following response:

{
    "amount": "1000",
  	"accountNumber": "1111111103"
}
{
    "data": {
        "status": "00",
        "message": "Successfully notified"
    },
    "status": true,
    "message": "Success",
    "code": 201
}