v1

latestOpenAPI 3.1.02026-07-22155403592.5 KB
Point of Sale
Products

Get products

Returns a list of products

get/consumers/{consumer_id}/pos/products

Path parameters

consumer_idstring uuid required

Query parameters

pageinteger

Page number

sizeinteger

Page size

location_idstring nullable

Unique identifier of the location. If none passed, products from all locations will be returned unless the location was selected by the end-user

Response

Successful Response

totalinteger required
pageinteger required
sizeinteger required

Example response

{
  "items": [
    {
      "id": "371ca583-d218-4900-b236-397532cf0e39",
      "name": "Pizza margheritta",
      "description": "Pizza margheritta",
      "prices": [
        {
          "unit_price": 10,
          "tax_rate": 10
        }
      ]
    }
  ]
}