v1

latestOpenAPI 3.0.32026-07-26208618579.9 KB
Get purchase details

Retrieve a list of purchase details

This operation will return purchase details

get/v1/

Query parameters

pageinteger

Current page

sizeinteger

How many purchase details should be returned per page, default is 30. Cannot be more than 100.

filterstring

The filter currently accepts two search fields; externalId and transactionId which you can match with the operator eq. Two logical operators; AND and OR are supported, which means that you can combine a filter Ex. ?filter=externalId eq 1234, ?filter=externalId eq 1234 AND transactionId eq 2222

auditUserstring required

The audit user to log the request

Response

Successfully retrieved

Example response

[
  {
    "amount": {
      "amount": 3.14,
      "currency": "EUR"
    },
    "VAT": {
      "amount": {
        "amount": 3.14,
        "currency": "EUR"
      }
    }
  }
]