Get Selected Features - Venddor API

← Back to API Documentation
GET {{baseUrl}}/Features/575

This endpoint retrieves detailed information about a specific feature by ID. In this case, it retrieves information about the Size feature (ID 575).

Note: Always pass 575 as the ID in the URL for the Size feature.

Request Headers

Header Value Description
Authorization Basic Auth Base64 encoded username:password combination

Response

The endpoint returns detailed information about the requested feature, including any variants (values) associated with it.

Feature Fields Reference

Please refer to the Get Features documentation for a complete list of fields and their descriptions.

Example Response

{
  "feature_id": "575",
  "company_id": "0",
  "description": "Size",
  "feature_type": "S",
  "purpose": "group_catalog_item",
  "feature_style": "dropdown",
  "filter_style": "checkbox",
  "status": "A",
  "ec_size_feature": "Y",
  "variants": [
    {
      "variant_id": "1234",
      "variant": "37/38"
    },
    {
      "variant_id": "1235",
      "variant": "39/40"
    },
    {
      "variant_id": "1236",
      "variant": "41/42"
    }
  ]
}