action vtex_specifications_values_by_field_id { label: "Get Specification Values By Field ID" description: "Gets a list of all specification values from a Specification Field by this field's ID. \n \n## Response body example \n \n```json \n[ \n { \n \"FieldValueId\": 52, \n \"Value\": \"0 a 6 meses\", \n \"IsActive\": true, \n \"Position\": 1 \n }, \n { \n \"FieldValueId\": 53, \n \"Value\": \"1 a 2 anos\", \n \"IsActive\": true, \n \"Position\": 4 \n }, \n { \n \"FieldValueId\": 54, \n \"Value\": \"3 a 4 anos\", \n \"IsActive\": true, \n \"Position\": 3 \n }, \n { \n \"FieldValueId\": 55, \n \"Value\": \"5 a 6 anos\", \n \"IsActive\": true, \n \"Position\": 2 \n }, \n { \n \"FieldValueId\": 56, \n \"Value\": \"7 a 8 anos\", \n \"IsActive\": true, \n \"Position\": 5 \n }, \n { \n \"FieldValueId\": 57, \n \"Value\": \"9 a 10 anos\", \n \"IsActive\": true, \n \"Position\": 6 \n }, \n { \n \"FieldValueId\": 58, \n \"Value\": \"Acima de 10 anos\", \n \"IsActive\": true, \n \"Position\": 7 \n } \n] \n```" provider: vtex method: GET path: "/api/catalog_system/pub/specification/fieldvalue/{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: "array" items: { type: "object" required: ["FieldValueId", "Value", "IsActive", "Position"] properties: { FieldValueId: { type: "integer" format: "int32" description: "Specification Field Value ID." } IsActive: { type: "boolean" description: "Defines if the Specification Field is active (`true`) or inactive (`false`)." } Position: { type: "integer" format: "int32" description: "Specification Field Value Position." } Value: { type: "string" description: "Specification Field Value." } } } } }