action vtex_specifications_get_field_value { label: "Get Specification Field Value" description: "Retrieves details from a specification field's value by this value's ID. \n>⚠️ This is a legacy endpoint. We recommend using [Get Specification Value](https://developers.vtex.com/vtex-rest-api/reference/catalog-api-get-specification-value-id) instead. \n \n## Response body example \n \n```json \n{ \n \"FieldValueId\": 143, \n \"FieldId\": 34, \n \"Name\": \"TesteInsert\", \n \"Text\": \"Value Description\", \n \"IsActive\": true, \n \"Position\": 100 \n} \n```" provider: vtex method: GET path: "/api/catalog_system/pvt/specification/fieldValue/{fieldValueId}" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } fieldValueId: { type: "string" } } required: ["Accept", "Content-Type", "fieldValueId"] additionalProperties: false } output: { type: "object" properties: { FieldId: { type: "integer" description: "Specification Field ID." } FieldValueId: { type: "integer" format: "int32" description: "Specification Field Value ID." } IsActive: { type: "boolean" description: "Defines if the Specification Field Value is active (`true`) or inactive (`false`)." } Name: { type: "string" description: "Specification Field Value Name." } Position: { type: "integer" format: "int32" description: "Specification Field Value Position." } Text: { type: "string" description: "Specification Field Value Description." } } } }