Transfer (Subuser Wallet to Master Wallet)
Master Wallet Fund Transfer
Transfer fund from the main wallet to subuser's wallet.
POST METHOD
Note
You can only supply a Currency ISO Code of 3-character at the currency
{{baseUrl}}/api/v2/transfer/subuser-master
{
"fromCur" : "NGN",
"toCur" : "USD",
"amount": 10.0,
"sender":"[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 |
sender | true | Subuser email address |
Response
{
"status": true,
"content": {
"data": [
{
"id": 901,
"transId": "blqtrans1676308742",
"transType": "Transfer",
"transRef": "blqtrans1676308742",
"purpose": "Internal Transfer",
"desc": " ",
"fromCur": "NGN",
"toCur": "NGN",
"fromAmount": "10",
"toAmount": "10",
"charges": "0",
"rate": "1",
"externalType": "Receiver",
"externalName": "Opeyemi Taofik",
"externalId": 3,
"remittance": "",
"remittancePurpose": "",
"remittancePurposeFile": "",
"fundSource": "",
"confirmation": "Payment Confirmed",
"status": "Confirmed",
"created_at": "2023-02-13T17:19:06.000000Z",
"updated_at": "2023-02-13T17:19:06.000000Z",
"reason": null,
"batchReference": null
},
{
"id": 902,
"transId": "blqtrans1676308742",
"transType": "Transfer",
"transRef": "blqtrans1676308742",
"purpose": "Internal Transfer",
"desc": " ",
"fromCur": "NGN",
"toCur": "NGN",
"fromAmount": "10",
"toAmount": "10",
"charges": "0",
"rate": "1",
"externalType": "Sender",
"externalName": "Tech Blinqpay",
"externalId": 1,
"remittance": "",
"remittancePurpose": "",
"remittancePurposeFile": "",
"fundSource": "",
"confirmation": "Payment Confirmed",
"status": "Confirmed",
"created_at": "2023-02-13T17:19:06.000000Z",
"updated_at": "2023-02-13T17:19:06.000000Z",
"reason": null,
"batchReference": null
}
]
}
}
Updated almost 2 years ago