View All Transactions
This endpoint retrieves transactions associated to the authenticated user.
GET
/auth/view-transactions
Headers
Name
Value
Content-Type
application/json
Token
<token>
Response
{
"type": "object",
"properties": {
"transactionId": {
"type": "string"
},
"amount": {
"type": "number"
},
"currency": {
"type": "string"
},
"timestamp": {
"type": "string",
"format": "date-time"
}
}
}
Last updated