v1

latestOpenAPI 3.1.02026-07-22155403592.5 KB
Point of Sale
Payments

Get payments

Returns a list of payments

get/consumers/{consumer_id}/pos/payments

Path parameters

consumer_idstring uuid required

Query parameters

pageinteger

Page number

sizeinteger

Page size

date_fromstring date required

Start date (inclusive) of the period to get payments from

date_tostring date required

End date (inclusive) of the period to get payments from

Response

Successful Response

totalinteger required
pageinteger required
sizeinteger required

Example response

{
  "items": [
    {
      "id": "payment-123",
      "payment_method_id": "payment-method-123",
      "payment_method_name": "Cash",
      "total": 11,
      "tip": 1,
      "currency": "EUR",
      "date": "2025-01-01T00:00:00Z",
      "invoice_ref": "invoice-123"
    }
  ]
}