Skip to main content

TransactionOperationListResponse

pageinteger

The current pagination page

per_pageinteger

The requested number of entries per page

last_pageinteger

The last page with entries

totalinteger

The total number of entries

first_page_urlstring

URL for the first page

last_page_urlstring

URL for the last page

next_page_urlstring

URL for the next page

previous_page_urlstring

URL for the previous page

frominteger

The entry offset for the first entry in the page

tointeger

The entry offset for the last entry in the page

pathstring

The path for the pagination endpoint

items object[]

The page contents

  • Array [
  • iduuid

    The ID of the operation

    amountinteger

    The operation amount in minor units. 10000 equal 100.00 DKK

    statestring

    The state of the operation.

    Possible values: [PROCESSING, SUCCESS, FAILED]

    transactionIdstring

    The ID of the associated transaction

    Example: LDG7M4WW44G
    typestring

    The type of operation

    Possible values: [AUTHORIZATION, SALE, CAPTURE, REFUND, VOID, PAYOUT]

    errorCodestringnullable

    When state is equal to FAILED, this will contain the explaining error code.

    createdAtdate-time

    The time of creation

  • ]
  • TransactionOperationListResponse
    {
    "page": 0,
    "per_page": 0,
    "last_page": 0,
    "total": 0,
    "first_page_url": "string",
    "last_page_url": "string",
    "next_page_url": "string",
    "previous_page_url": "string",
    "from": 0,
    "to": 0,
    "path": "string",
    "items": [
    {
    "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "amount": 0,
    "state": "PROCESSING",
    "transactionId": "LDG7M4WW44G",
    "type": "AUTHORIZATION",
    "errorCode": "string",
    "createdAt": "2024-07-29T15:51:28.071Z"
    }
    ]
    }