Looking for ePay classic docs? Go to docs.epay.dk
ePay documentationDocsePay documentation

TransactionsListResponse

Cursor paginated transactions ordered from newest to oldest.

currentOffsetstring
Required

Cursor used to generate the current page. Empty when the first page is requested.

Example:
""
nextOffsetstring
NullableRequired

Cursor to pass as offset when requesting the next page. Null when no more items exist.

Example:
"LDG7M4WW44G"
perPageinteger
Required

The maximum number of entries returned in each page.

Example:
25
hasMoreboolean
Required

Indicates whether another page can be requested.

Example:
false

The transactions returned for the current cursor window.

TransactionsListResponse
{  "currentOffset": "",  "nextOffset": "LDG7M4WW44G",  "perPage": 25,  "hasMore": false,  "items": [    {      "transaction": {        "id": "LDG7M4WW44G",        "subscriptionId": "0197c07b-3f6d-7be2-b848-702b08958128",        "billingAgreementChargeId": "019a727b-987f-7768-a59e-71af920ef81f",        "state": "PENDING",        "errorCode": "string",        "externalStatusCodes": {          "terminal": "string",          "acquirer": "string",          "network": "string",          "sca": "string"        },        "createdAt": "2019-08-24T14:15:22Z",        "sessionId": "string",        "paymentMethodId": "b6df8625-cd25-4123-b345-638aa7b5d011",        "paymentMethodType": "CARD",        "paymentMethodSubType": "Visa",        "paymentMethodExpiry": "2019-08-24",        "paymentMethodDisplayText": "string",        "paymentMethodHolderName": "string",        "scaMode": "SKIP",        "customerId": "string",        "amount": 0,        "fee": 0,        "currency": "string",        "instantCapture": "OFF",        "notificationUrl": "http://example.com",        "pointOfSaleId": "be6bff4f-7fac-43c0-9f6b-cf2cd45ed7d1",        "reference": "string",        "textOnStatement": "string",        "exemptions": [          "LVT",          "TRA"        ],        "attributes": {          "property1": null,          "property2": null        },        "clientIp": "52.212.176.122",        "clientCountry": "DK",        "type": "PAYMENT"      }    }  ]}