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

List settlement transfers

GET
/public/api/v1/settlements/transfers

Authorization

BearerAuth
AuthorizationBearer <token>

In: header

Query Parameters

perPageinteger

Maximum number of results to return in the response.

Default:
25
Range:
1 <= value <= 500
offsetstring
Example:
"019b3168-9334-770c-b34f-829d3c9c65d1"

Response Body

application/json

curl -X GET "https://example.com/public/api/v1/settlements/transfers"
{  "currentOffset": "",  "nextOffset": "019b3168-9334-770c-b34f-829d3c9c65d1",  "perPage": 25,  "hasMore": false,  "items": [    {      "settlementTransfer": {        "id": "019b3130-5d58-716d-8881-9a3ec506017f",        "acquirer": "shift4",        "settlementName": "settlement.csv",        "settlementIds": [          [            "R01234"          ]        ],        "postingDate": "2025-01-01",        "netAmount": "99.01",        "currency": "DKK",        "acquirerReference": "acq-123",        "adjustments": [          {            "type": "FEE",            "amount": "-1.00",            "description": "discount_rate"          }        ],        "adjustmentSums": [          {            "type": "FEE",            "amount": "-1.00",            "description": "discount_rate"          }        ],        "createdAt": "2025-12-18T11:20:11Z"      }    }  ]}
Empty
Empty