action vtex_get_api_catalog_pvt_specificationvalue_specification_value_id { label: "Get Specification Value" description: "Retrieves general information about a Specification Value. \n## Response body example \n \n```json \n{ \n \"FieldValueId\": 143, \n \"FieldId\": 34, \n \"Name\": \"Cotton\", \n \"Text\": \"Cotton fibers\", \n \"IsActive\": true, \n \"Position\": 100 \n} \n```" provider: vtex method: GET path: "/api/catalog/pvt/specificationvalue/{specificationValueId}" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } specificationValueId: { type: "integer" } } required: ["Accept", "Content-Type", "specificationValueId"] 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." } } } }