Skip to main content

SettlementTransferCursor

currentOffsetstring

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

Example:
nextOffsetstringnullable

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

Example: 019b3168-9334-770c-b34f-829d3c9c65d1
perPageinteger

The maximum number of entries returned in each page.

Example: 25
hasMoreboolean

Indicates whether another page can be requested.

Example: false
items object[]
  • Array [
  • settlementTransfer object
    iduuid

    The ePay ID of the settlement transfer

    Example: 019b3130-5d58-716d-8881-9a3ec506017f
    acquirerstring

    Acquirer identifier

    Example: shift4
    settlementNamestring

    Name or filename of the settlement report as received by ePay. This is mainly used for logging and debugging purposes.

    Example: settlement.csv
    settlementIdsstring[]

    List of MIDs included in the settlement report.

    postingDatedate

    The posting date of the transfer as registered by the acquirer

    Example: 2025-01-01
    netAmountstring

    Net amount (After adjustments and fees) as numeric string

    Example: 99.01
    currencystring

    ISO 4217 currency

    Example: DKK
    acquirerReferencestring

    Reference from acquirer

    Example: acq-123
    adjustments object[]
  • Array [
  • typestring

    The type of adjustment, this tells you reason for the adjust and who the money is paid to.

    The types [RESERVE, ADJUSTMENT, FEE] is used for transfer adjustments.

    • RESERVE: The amounts deducted and released from the merchant’s collateral
    • FEE: Fees charged for different services provided by the acquirer (e.g., wire transfer fee).
    • ADJUSTMENT: Amounts debited or credited to the merchant to adjust the merchant balance.

    The types [ACQUIRER_FEE, INTERCHANGE_FEE, SCHEME_FEE] is used for transaction adjustments.

    • ACQUIRER_FEE: Fees that is charged by and goes to the acquirer.
    • INTERCHANGE_FEE: Fees that goes to the issuing bank of the paying card.
    • SCHEME_FEE: Fees that goes to the scheme network such as Visa and Mastercard.

    Possible values: [RESERVE, ADJUSTMENT, FEE, ACQUIRER_FEE, INTERCHANGE_FEE, SCHEME_FEE]

    Example: FEE
    amountstring

    Numeric string, negative for fees

    Example: -1.00
    descriptionstring

    Human-readable description

    Example: discount_rate
  • ]
  • createdAtdate-time
    Example: 2025-12-18T11:20:11Z
  • ]
  • SettlementTransferCursor
    {
    "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"
    }
    ],
    "createdAt": "2025-12-18T11:20:11Z"
    }
    }
    ]
    }