Simulate Credit
This endpoint allows you to simulate an inflow on the development environment Only
Request Details
Field | Data type | Required | Description |
---|---|---|---|
accountNumber | string | Yes | Account Number to receive funding |
amount | string | Yes | Amount 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
}
Updated 5 months ago