action vtex_specifications_field { label: "Get Specification Field" description: "Retrieves details from a specification field by this field's ID. \n>⚠️ This is a legacy endpoint. We recommend using [Get Specification](https://developers.vtex.com/vtex-rest-api/reference/get_api-catalog-pvt-specification-specificationid) instead. \n \n## Response body example \n \n```json \n{ \n \"Name\": \"Material\", \n \"CategoryId\": 4, \n \"FieldId\": 88, \n \"IsActive\": true, \n \"IsRequired\": true, \n \"FieldTypeId\": 1, \n \"FieldTypeName\": \"Texto\", \n \"FieldValueId\": null, \n \"Description\": \"Composition of the product.\", \n \"IsStockKeepingUnit\": false, \n \"IsFilter\": true, \n \"IsOnProductDetails\": false, \n \"Position\": 1, \n \"IsWizard\": false, \n \"IsTopMenuLinkActive\": false, \n \"IsSideMenuLinkActive\": true, \n \"DefaultValue\": null, \n \"FieldGroupId\": 20, \n \"FieldGroupName\": \"Clothes specifications\" \n} \n``` \n \n" provider: vtex method: GET path: "/api/catalog_system/pub/specification/fieldGet/{fieldId}" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } fieldId: { type: "integer" } } required: ["Accept", "Content-Type", "fieldId"] additionalProperties: false } output: { type: "object" properties: { DefaultValue: { type: "string" description: "Specification default value." } Description: { type: "string" } FieldGroupId: { type: "integer" description: "ID of the group of specifications that contains the new specification." } FieldGroupName: { type: "string" description: "Specification Field Group Name." } FieldId: { type: "integer" description: "Specification field ID." } FieldTypeId: { type: "integer" description: "Field Type ID can be `1 - Text`, `2 - Multi-Line Text`, `4 - Number`, `5 - Combo`, `6 - Radio`, `7 - Checkbox`, `8 - Indexed Text`, `9 - Indexed Multi-Line Text`." } FieldTypeName: { type: "string" description: "Field Type name, which can be `Text`, `Multi-Line Text`, `Number`, `Combo`, `Radio`, `Checkbox`, `Indexed Text` or `Indexed Multi-Line Text`." } FieldValueId: { type: "integer" description: "Specification value ID." } IsActive: { type: "boolean" description: "Enable (`true`) or disable (`false`) specification." } IsFilter: { type: "boolean" description: "Store Framework - Deprecated. \nLegacy CMS Portal - To allow the specification to be used as a facet (filter) on the search navigation bar. \n" } IsOnProductDetails: { type: "boolean" description: "Store Framework - Deprecated. \nLegacy CMS Portal -If specification is visible on the product page. \n" } IsRequired: { type: "boolean" description: "Makes the specification mandatory (`true`) or optional (`false`)." } IsSideMenuLinkActive: { type: "boolean" description: "Store Framework - Deprecated. \nLegacy CMS Portal - To make the specification field clickable in the search navigation bar. \n" } IsStockKeepingUnit: { type: "boolean" description: "If `true`, it will be added as a SKU specification. If `false`, it will be added as a product specification field." } IsTopMenuLinkActive: { type: "boolean" description: "Store Framework - Deprecated. \nLegacy CMS Portal - To make the specification visible in the store's upper menu. \n" } IsWizard: { type: "boolean" } Name: { type: "string" description: "Specification field name." } Position: { type: "integer" description: "Store Framework - Deprecated. \nLegacy CMS Portal - This position number is used in ordering the specifications both in the navigation menu and in the specification listing on the product page. \n" } } } }