Transfer
POST /api/merchant/{wallet}
please note you have to pass wallet id
Headers
Name
Value
Description
Accept
application/json
CLIENT
client_key
The unique identifier for the client.
SECRET
generated_secret
The expected secret generated using your client key and secret key.
Body
{
"desc":"inward",
"amount":"125000",
"beneficiary_id": 5
}Response
{
"desc": "inward|Transfer NGN125000 to Zenith bank(2897836493 Ameti Akpan)",
"amount": "125000.00",
"type": "DEBIT",
"status": "PENDING",
"bank_name": "Zenith bank",
"bank_code": "003",
"acc_number": "2897836493",
"acc_name": "Ameti Akpan",
"reason": "Transfer",
"ref": "d5296137e8e219e02e5ae7098cb4e084",
"created_at": "2024-10-30T08:00:08.000000Z",
"id": 28
}{
"error": "Insufficient wallet balance."
}{
"message": "The desc field is required. (and 2 more errors)",
"errors": {
"desc": [
"The desc field is required."
],
"amount": [
"The amount field is required."
],
"beneficiary_id": [
"The beneficiary id field is required."
]
}
}Last updated