List Transactions
List transactions with optional filtering.
Query Parameters
- Type: string | null · Mid
mid Merchant ID filter
- Type: string | null · Tid
tid Terminal ID filter
- Type: string | null · Location Id
location _id Location ID filter
- Type: string | null · Account Id
account _id Account ID filter
- Type: string | null · Event Id
event _id Event ID filter
- Type: string | null · Reader Identifier
reader _identifier Reader identifier filter
- Type: string | null · Gateway Transaction Id
gateway _transaction _id Gateway transaction ID filter
- Type: integer · Limit
limit Maximum number of transactions to return
- Type: integer · Offset
offset Number of transactions to skip
Headers
- enum
Accept const:application/jsonrequiredResponse format. Must be
application/json.valuesapplication/json
Responses
- application/json
- application/json
Request Example for get/v1/transactions
curl 'https://api.uat.koard.com/v1/transactions?mid=null&tid=null&location_id=null&account_id=null&event_id=null&reader_identifier=null&gateway_transaction_id=null&limit=100&offset=0' \
--header 'Accept: application/json' \
--header 'x-koard-apikey: YOUR_SECRET_TOKEN'
[
{
"account_id": "string",
"additional_details": {},
"apple_transaction_id": "string",
"batch_id": null,
"card": "string",
"card_brand": "string",
"card_type": "string",
"created_at": 1,
"currency": "string",
"device_id": null,
"event_id": "string",
"gateway": null,
"gateway_transaction_id": null,
"gateway_transaction_response": null,
"history": [],
"location_id": null,
"merchant_name": "",
"mid": "string",
"owner_id": null,
"parent_account_ids": [
"string"
],
"payment_method": "string",
"processor": null,
"processor_mid": "string",
"processor_response_code": null,
"processor_response_message": null,
"processor_tid": "string",
"reader_identifier": "string",
"refunded": null,
"reversed": null,
"status": null,
"status_reason": null,
"subtotal": 1,
"surcharge_amount": null,
"surcharge_applied": false,
"surcharge_rate": null,
"tax_amount": null,
"tax_rate": null,
"tid": "string",
"tip_amount": null,
"tip_type": null,
"total_amount": 1,
"transaction_id": "string",
"transaction_type": null
}
]
