GET - Card Transactions
Returns a list of transactions against the card identified by the cardId in path parameter.
Get - Card Transactions
End point
https://api.up.money/cards/transactions/{cardId}
Headers
Path Parameters
id (required)
string
^[0-9]+$
The unique identifier of a card.
Sample Request
curl --location 'https://api.up2.money/cards/transactions/{cardId}' \
--header 'x-secret: YWJjMTIzIQ==' \
--header 'Authorization-key: YOUR_AUTHORIZATION_KEY' \
--data ''
Sample Response
{
"entry": [
{
"transactionId": {
"type": "INSTRUMENT_CREATE",
"id": "string"
},
"entryState": "PENDING",
"originalAmount": {
"currency": "str",
"amount": 0
},
"forexRate": {
"value": 0,
"scale": -128
},
"transactionAmount": {
"currency": "str",
"amount": 0
},
"availableBalanceAdjustment": {
"currency": "str",
"amount": 0
},
"actualBalanceAdjustment": {
"currency": "str",
"amount": 0
},
"balanceAfter": {
"currency": "str",
"amount": 0
},
"availableBalanceAfter": {
"currency": "str",
"amount": 0
},
"actualBalanceAfter": {
"currency": "str",
"amount": 0
},
"transactionFee": {
"currency": "str",
"amount": 0
},
"cardholderFee": {
"currency": "str",
"amount": 0
},
"processedTimestamp": 0,
"sourceAmount": {
"currency": "str",
"amount": 0
},
"additionalFields": {
"property1": "string",
"property2": "string"
}
}
],
"count": 0,
"responseCount": 0,
"startBalance": {
"currency": "str",
"amount": 0
},
"endBalance": {
"currency": "str",
"amount": 0
},
"footer": "string"
}
Response Status
200 Success
400 Bad Request Error - Your request is invalid.
401 Unauthorized - Your credentials or access token are invalid.
429 Too many requests.
500 Internal Server Error - There is a problem with the server. Please try again later.
503 Service Unavailable - We're temporarily offline for maintenance. Please try again later.
E-nums
STEP_UP_REQUIRED
Current session is expired, Call stepup api to create new session
ACCESS_TOKEN_REQUIRED
Issue with your token (Invalid or expired)
Last updated