Transfer (one user to another)
Subuser Internal Transfer
Transfer fund from one user wallet to another user wallet in regards to currency.
POST METHOD
NoteYou can only supply a Currency ISO Code of 3-character at the currency
{{baseUrl}}/api/v2/transfer{
    "fromCur" : "NGN",
    "toCur" : "NGN",
    "amount": 10.0,
    "email":"[email protected]",
    "receiver":"[email protected]"
}| Field | Required | Data Type | Description | 
|---|---|---|---|
| fromCur | true | String | Wallet Converting from. Length: 3, Currency ISO code i.e USD | 
| toCur | true | String | Wallet Converting to. Length: 3, Currency ISO code i.e NGN | 
| amount | true | decimal | Amount to be debited from the fromCur Wallet | 
| true | Subuser email Address | ||
| receiver | true | Receiving user register email address | 
Response
{
    "status": true,
    "content": {
        "data": [
            {
                "id": 485,
                "transId": "blqtrans1669158528",
                "transType": 5,
                "transRef": "blqtrans1669158528",
                "purpose": "Internal Transfer",
                "desc": " ",
                "fromCur": "NGN",
                "toCur": "NGN",
                "fromAmount": "10",
                "toAmount": "10",
                "charges": "0",
                "rate": "1",
                "externalType": "Sender",
                "externalName": "Akinpelu Taofik",
                "externalId": 1,
                "remittance": "",
                "remittancePurpose": "",
                "remittancePurposeFile": "",
                "fundSource": "",
                "confirmation": 1,
                "status": 1,
                "created_at": "2022-11-22T23:08:51.000000Z",
                "updated_at": "2022-11-22T23:08:51.000000Z",
                "reason": null,
                "batchReference": null
            }
        ]
    }
}Updated 9 months ago
