List Transactions
Overview
List rewardable transactions. Filtering and sorting can be applied.
Endpoint URL
https://api-s.nolantechnologies.com/v0/rewards/rewardable-transactions
Endpoint Data
| Parameter Name | Description | Required |
|---|---|---|
whereClause |
Query WHERE clause | No |
columnNames |
Query column name list | No |
values |
Query value list | No |
orderByClause |
Query ORDER BY clause | No |
Column Names
- TODO
Example Request
curl -i -X GET "https://api-s.nolantechnologies.com/v0/rewards/rewardable-transactions?whereClause=$C1 IN ( $V1 )&columnNames=id&values=[1,2,3]&orderByClause=$C1 DESC" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "X-Nolan-API-Key: YourNolanApiKey"
Example Response
HTTP/1.1 200 OK
X-Powered-By: Express
Content-Type: application/json; charset=utf-8
Content-Length: 332
ETag: W/"14c-PIXt+3CWLR/8LXvJ5oHPfhWsbyg"
Date: Sat, 23 Sep 2023 20:51:38 GMT
Connection: keep-alive
Keep-Alive: timeout=5
{
"data": [
{
"id": 3,
"kardUserCardId": 3,
"unitTransactionId": "3952312",
"createdAt": "2023-02-16T16:34:35.739Z",
"updatedAt": null
},
{
"id": 2,
"kardUserCardId": 3,
"unitTransactionId": "3952290",
"createdAt": "2023-02-16T16:33:13.898Z",
"updatedAt": null
},
{
"id": 1,
"kardUserCardId": 1,
"unitTransactionId": "3869674",
"createdAt": "2023-02-14T22:25:17.542Z",
"updatedAt": null
}
]
}