Viewing Feature List

Viewing the Feature List

  • It lists the product features in the ticket application of the relevant 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/Features
Example Response
{
  "Status": 100,
  "Message": "İşlem Başarılı",
  "Data": {
    "Features": [
      {
        "FeatureName": "Örnek Özellik Adı 1",
        "FeatureId": 2113,
        "FeatureCode": "ÖzellikKodu0101",
        "RelatedProducts": [
          {
            "ProductId": "1441",
            "AdditionalPrice": 14,
            "FeatureHeaderName": "Cheeseburger Sos Seçimi"
          },
          {
            "ProductId": "1442",
            "AdditionalPrice": 24,
            "FeatureHeaderName": "Tavukburger Sos Seçimi"
          }
        ]
      },
      {
        "FeatureName": "Örnek Özellik Adı 2",
        "FeatureId": 2114,
        "FeatureCode": "ÖzellikKodu02",
        "RelatedProducts": [
          {
            "ProductId": "1443",
            "AdditionalPrice": 2,
            "FeatureHeaderName": "Malzeme Seçimi"
          },
          {
            "ProductId": "1444",
            "AdditionalPrice": 4,
            "FeatureHeaderName": "İçecek Seçimi"
          }
        ]
      }
    ],
    "ExcludedFeatures": [
      {
        "FeatureName": "Çıkarılabilir Özellik Adı 1",
        "FeatureId": 2115,
        "FeatureCode": "ÖzellikKodu0102",
        "RelatedProducts": [
          {
            "ProductId": 1342
          }
        ]
      }
    ]
  }
}