v1
latestOpenAPI 3.0.02026-07-2480677847.6 KBList Authorisations
Return a list of all authorisations, restricted by your allianceCode, partnerCode or merchant ID (as appropriate) for the given datetime range.
Query parameters
Filter authorisations on the created 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 authorisations on the created 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: +created would sort by the 'created' field ascending.
Allowed fields: created
Default: +created (oldest first)
For use by an alliance, partner or merchant when there is a need to filter on a specific store within their scope. May be restricted based on the API key.
Filter for records made on a specific terminal by ID.
Filter for records linked by the order ID from our payment gateway.
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",
"created": "2021-08-16T14:12:43Z",
"status": "APPROVED",
"code": "454903",
"channel": "ECOMMERCE",
"messageType": "0110",
"merchant": {
"id": "520334547514337",
"name": "Matt's Bicycles Ltd",
"countryCode": "GBR",
"mcc": "0742",
"allianceCode": "FISV",
"partnerCode": "DIGI_PMNTS",
"storeId": "1108707593"
},
"meta": {
"orderId": "54321123456",
"referenceId": "8900000395354000",
"GUID": "adaeeb64-aa26-48b4-95c5-3e79ff68f176",
"retrievalReferenceNumber": "130237163512",
"merchantReference1": "GGIC-FK-432432-AB",
"merchantReference2": "AB-432342-CS-43",
"reservationNumber": "2432-354353-0002423-243231",
"customerIPAddress": "8.18.18.25",
"products": [
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08"
}
]
},
"paymentInstrument": {
"brand": "VISA",
"number": "446998******2153",
"expiryDate": "2501",
"subType": "N2",
"token": "123abc456def"
},
"financial": {
"amounts": {
"currencyCode": "GBP",
"authorised": "20.99",
"cashback": "20.99",
"tip": "20.99"
},
"dcc": {
"currencyCode": "GBP"
},
"instalment": {
"totalNumber": 24,
"totalAmount": "20.99",
"deferredPeriod": 2,
"first": "20.99"
}
},
"transactionAttributes": {
"issuerResponseCode": "00",
"avsResponse": "A"
},
"captureEnvironment": {
"platform": "IPG",
"captureMethod": "CHIP_CONTACTLESS",
"terminal": {
"workstationId": "520334508707619",
"serialNumber": "1359875623",
"pinCaptureCapability": 4
}
},
"_links": {
"transactions": {
"href": "/transactions?postedAfter=2021-08-16&postedBefore=2021-08-18&orderId=123456"
}
}
}
]