Wallet Transactions
- This API is used to view Wallet Transactions.
Endpoint
Make sure you are familiar with how APIs work:
- Method: POST
- URL: https://uat.nupaytech.com/api/v1/transactions/report/wallet
API Request Fields
Sr.No | Field | Min-Max Length | Mandatory? | Data Type | Description | Comments |
---|---|---|---|---|---|---|
1 | customer_id | - | M | String | CustomerId / CorporateId | - |
2 | from_date | - | M | date | Starting Date of Report | - |
3 | to_date | - | M | date | Ending Date of Report | - |
Execution Request Example
null
Success Response Example
{
"data": [
{
"transactionId": "ITZC00000144336",
"merchantName": "Interactive Tradex India Limited",
"transactionDate": "06-Oct-23 15:01:15",
"transactionAmount": 10,
"transactionStatus": "Confirmed",
"transactionType": "Credit"
},
{
"transactionId": "ITZC00000144335",
"merchantName": "Interactive Tradex India Limited",
"transactionDate": "06-Oct-23 14:59:40",
"transactionAmount": 10,
"transactionStatus": "Confirmed",
"transactionType": "Credit"
}
]
}