List all Transaction with Currency
Display all Transaction
List Beneficiary with Currency to filter it.
POST METHOD
{{baseUrl}}api/v2/transaction/currency
{
"start" : 0,
"limit" : 10,
"cur" : "NGN"
}
Field | Required | Data Type | Description |
---|---|---|---|
start | true | Integer | Record row number in database (Descending) |
limit | true | Integer | Count of record to get |
cur | true | String | Length: 3, Currency ISO code i.e USD |
Response
{
"status": true,
"content": {
"data": {
"transaction": [
{
"id": 374,
"transId": "blq20odldl",
"transType": "Deposit",
"transRef": "",
"purpose": "Credit Wallet Transaction",
"desc": "Credit of wallet with 200 NGN with Bank Transfer",
"fromCur": "NGN",
"toCur": "NGN",
"fromAmount": "200",
"toAmount": "200",
"charges": "0",
"rate": "1",
"externalType": "Bank Transfer",
"externalName": "Providus Bank: BLINQPAY(Tech Qwid) (99********)",
"externalId": 1,
"partnerAddon": "0",
"partnerAmountAddon": 0,
"remittance": "",
"remittancePurpose": "",
"remittancePurposeFile": "",
"fundSource": "",
"confirmation": "Pending Payment",
"status": "Pending",
"created_at": "2022-09-16T08:15:59.000000Z",
"updated_at": "2022-09-16T08:15:59.000000Z",
"reason": null,
"batchReference": null
},
{
"id": 336,
"transId": "blqtrans1658787421",
"transType": "Deposit",
"transRef": "",
"purpose": "Credit Wallet Transaction",
"desc": "Credit of wallet with 300 NGN with Bank Transfer",
"fromCur": "NGN",
"toCur": "NGN",
"fromAmount": "300",
"toAmount": "300",
"charges": "0",
"rate": "1",
"externalType": "Deposit",
"externalName": "Providus: BLINQPAY(Qwid Inc.) (99********)",
"externalId": 28,
"partnerAddon": "0",
"partnerAmountAddon": 0,
"remittance": "",
"remittancePurpose": "",
"remittancePurposeFile": "",
"fundSource": "",
"confirmation": "Payment Confirmed",
"status": "Confirm",
"created_at": "2022-07-25T22:18:09.000000Z",
"updated_at": "2022-07-25T22:18:09.000000Z",
"reason": null,
"batchReference": null
}
],
"endUser": [
{
"username": "TAW-1651763302",
"email": "[email protected]",
"level": 0,
"emailVerify": 1,
"pix": "",
"firstName": "Taofik",
"lastName": "Opeyemi",
"dob": "13-06-1996",
"sex": "Male",
"address": "Lekki Phase II",
"state": "Lagos",
"stateCode": "",
"city": "Lekki",
"zipcode": 23402,
"country": "Nigeria",
"countryCode": "NG",
"mobileCode": "+234",
"mobile": "8080808080",
"companyName": "Qwid Inc.",
"created_at": "2022-05-05T15:08:23.000000Z",
"updated_at": "2022-07-25T14:24:15.000000Z",
"activeStatus": true,
"activeReason": null
}
]
}
}
}
Transaction Type
The below explain the type of Transaction performed
TransType Transaction Type Description 1 Debit 2 Withdrawal 3 Offshore/Remittance/Payout 4 Convert Wallet converted from 5 Convert Wallet converted to 6 Internal Transfer Sender 7 Internal Transfer Receiver 8 Debit Qwid Debit 9 Credit Qwid Credit
Updated almost 2 years ago