List financial transactions
Lists a less detailed history of all transactions associated with the merchant account.
Query Parameters
Responses
- 200
- 401
OK
- application/json
- Schema
- Example (from schema)
Schema array
- amount float
- currency string
- external_reference string
- id string
- timestamp string
- transaction_code string
- type string
Possible values: [
SALE
,REFUND
,CHARGE_BACK
,DD_RETURN
,DD_RETURN_REVERSAL
]
[
{
"amount": 0,
"currency": "string",
"external_reference": "string",
"id": "string",
"timestamp": "string",
"transaction_code": "string",
"type": "SALE"
}
]
Unauthorized
- application/json
- Schema
- Example (from schema)
- Invalid_ Token
- Missing_ Token
- Not_ Authorized_ Token
Schema
- error_code string
Platform code for the error.
- message string
Short description of the error.
{
"error_code": "string",
"message": "string"
}
{
"error_code": "NOT_AUTHORIZED",
"error_message": "invalid access token"
}
{
"error_code": "NOT_AUTHORIZED",
"message": "access token required"
}
{
"error_code": "NOT_AUTHORIZED",
"error_message": "NOT_AUTHORIZED"
}