v1
latestOpenAPI 3.0.02026-07-2480677847.6 KBList Transactions
Return a list of all transactions, restricted by your allianceCode, partnerCode or merchant ID (as appropriate) for the given datetime range.
Query parameters
Filter transactions on the posted field from the given date value in ISO 8601 format yyyy-MM-dd, anything from the time 00:00:00 on the given day would match.
Default: Current day
Filter transactions on the posted field up to and including the given date value in ISO 8601 format yyyy-MM-dd, anything up the the time 23:59:59 on the given day would match.
Default: Current day
Number of elements to be returned in a single query.
Can be used for page/offset or cursor based pagination
Starting point to start retrieving the elements from. It is "0" based i.e. value "0" signifies the first page.
This can be used with "limit".
Can be used for page/offset based pagination.
Specifies the sequence of elements and order to sort the payload by
Defines how to sort the records returned. Must be specified in the syntax '+' (ascending) or '-' (descending) followed by the field name.
For example: +posted would sort by the 'posted' field ascending.
Allowed fields: posted
Default: +posted (oldest first)
Filter for records made on a specific terminal by ID.
Filter for records linked by the order ID from our payment gateway.
Filter for records linked by a funding record's id via the /fundings endpoint.
Filter for records linked by a funding detail record's id via the /fundings/{id}/details endpoint.
Headers
For use by an alliance when there is a need to filter on a specific partner within their scope. May be restricted based on the API key.
For use by an alliance or partner when there is a need to filter on a specific merchant within their scope. May be restricted based on the API key.
Response
OK
Example response
[
{
"id": "54321123456",
"posted": "2021-08-16T14:12:43Z",
"authorised": "2021-08-16T14:12:43Z",
"channel": "ECOMMERCE",
"merchant": {
"id": "520334547514337",
"name": "Matt's Bicycles Ltd",
"countryCode": "GBR",
"mcc": "0742",
"allianceCode": "FISV",
"partnerCode": "DIGI_PMNTS",
"storeId": "1108707593"
},
"meta": {
"orderId": "54321123456",
"authorisationCode": "454903",
"fundingDetailId": "54321123456",
"retrievalReferenceNumber": "130237163512",
"originalReference": "12345678900",
"terminalBatchNumber": "EPV190917_01",
"merchantTransactionReference": "GGIC-FK-432432-AB",
"acquirerReferenceNumber": "87263457739999123742"
},
"paymentInstrument": {
"brand": "VISA",
"number": "446998******2153",
"subType": "N2"
},
"financial": {
"amounts": {
"currencyCode": "GBP",
"transacted": "20.99",
"cashback": "20.99",
"tip": "20.99"
},
"fees": [
{
"type": "INTERCHANGE",
"currencyCode": "GBP",
"amount": "1.45732"
}
],
"funding": {
"currencyCode": "GBP",
"gross": "20.99",
"charges": "20.99",
"net": "20.99"
}
},
"captureEnvironment": {
"platform": "IPG",
"captureMethod": "CHIP_CONTACTLESS"
},
"_links": {
"authorisations": {
"href": "/authorisations?createdAfter=2021-08-16&createdBefore=2021-08-16&orderId=123456"
},
"fundings": {
"href": "/fundings?fundedAfter=2021-08-16&fundedBefore=2021-08-17&fundingDetailId=123456"
}
}
}
]