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
Parameter | Description | Type |
---|---|---|
x-api-key | API key of your account | string |
x-api-secret | API Secret key of your account | string |
x-api-consumer | Integrator restaurant/company name | string |
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
}
]
}
]
}
]
}