Viewing Product List

Viewing the Product List

  • It lists the product list in the ticket application of the related restaurant.

  • The request should be sent with the GET method.

Parameters

Request Header Parameters

ParameterDescriptionType
x-api-keyAPI key of your accountstring
x-api-secretAPI Secret key of your accountstring
x-api-consumerIntegrator restaurant/company namestring
Example Request
curl https://ext.adisyo.com/api/External/v2/Products
Example Response
{
  "Status": 100,
  "Message": "İşlem Başarılı",
  "Data": [
    {
      "CategoryName": "Örnek Kategori Adı",
      "CategoryId": 1234,
      "Products": [
        {
          "ProductName": "Örnek Ürün Adı",
          "ProductCode": "Örnek Ürün Kodu",
          "ProductUnits": [
            {
              "UnitName": "Örnek Birim Adı",
              "Prices": [
                {
                  "Price": 6,
                  "OrderType": 1
                },
                {
                  "Price": 7,
                  "OrderType": 3
                },
                {
                  "Price": 8,
                  "OrderType": 5
                }
              ],
              "ProductUnitId": 1111,
              "IsDefault": false
            }
          ],
          "ProductId": 21234,
          "TaxRate": 8,
          "IsStockFollow": true,
          "StockList": [
            {
              "StockQuantity": 1000,
              "SalesChannel": "Ana Kanal"
            }
          ],
          "Menus": [
            {
              "MenuName": "Örnek Menü Adı",
              "SubProducts": [
                {
                  "ProductName": "Örnek Ürün Adı",
                  "ProductCode": "Örnek Ürün Kodu",
                  "ProductUnitd": 134,
                  "ProductId": 123
                }
              ],
              "SelectableCount": 1
            }
          ]
        }
      ]
    }
  ]
}