List transactions
Operation transactions_list
Path parameters
| Name | Example | Description |
page |
— |
Default 1 |
limit |
— |
Default 20 |
Query parameters
| Name | Example | Description |
type |
— |
|
status |
— |
|
merchant |
— |
UUID of merchant |
user |
— |
UUID of user |
reference |
— |
|
start_date |
— |
|
end_date |
— |
|
Response
| Field |
Type |
Description |
code
|
integer
(0,any)
|
|
data
|
array[object]
|
22 nested fields
▾
|
| Field |
Type |
Description |
token
|
string
(0,any)
|
|
type
|
integer
(0,any)
|
|
merchant
|
string
(0,any)
|
|
execution_date
|
string
(0,any)
|
|
amount
|
number
(0,any)
|
|
currency
|
string
(0,any)
|
|
status
|
integer
(0,any)
|
|
card
|
string
(0,any)
|
|
card_pan_obfuscated
|
string
(0,any)
|
|
reference
|
string
(0,any)
|
|
reference2
|
string
(0,any)
|
|
linked_transaction
|
string
(0,any)
|
|
refundable_amount
|
number
(0,any)
|
|
voidable
|
boolean
|
|
pos_terminal_id
|
string
(0,any)
|
|
system_trace_audit_number
|
string
(0,any)
|
|
transaction_stamp
|
string
(0,any)
|
|
user
|
string
(0,any)
|
|
created_at
|
string
(0,any)
|
|
description
|
string
(0,any)
|
|
response_code
|
string
(0,any)
|
|
card_type
|
string
(0,any)
|
|
|
Example response
{
"code": "integer",
"data": [
{
"token": "string",
"type": "integer",
"merchant": "string",
"execution_date": "string",
"amount": "number",
"currency": "string",
"status": "integer",
"card": "string",
"card_pan_obfuscated": "string",
"reference": "string",
"reference2": "string",
"linked_transaction": "string",
"refundable_amount": "number",
"voidable": "boolean",
"pos_terminal_id": "string",
"system_trace_audit_number": "string",
"transaction_stamp": "string",
"user": "string",
"created_at": "string",
"description": "string",
"response_code": "string",
"card_type": "string"
}
]
}
Transaction detail
Path parameters
| Name | Example | Description |
token |
— |
|
Response
| Field |
Type |
Description |
code
|
integer
(0,any)
|
|
Example response
{
"code": "integer",
"data": {
"token": "string",
"type": "integer",
"merchant": "string",
"execution_date": "string",
"amount": "number",
"currency": "string",
"status": "integer",
"card": "string",
"card_pan_obfuscated": "string",
"reference": "string",
"reference2": "string",
"linked_transaction": "string",
"refundable_amount": "number",
"voidable": "boolean",
"pos_terminal_id": "string",
"system_trace_audit_number": "string",
"transaction_stamp": "string",
"user": "string",
"created_at": "string",
"description": "string",
"response_code": "string",
"card_type": "string"
}
}