action vtex_specifications_insert_field_value { label: "Create Specification Field Value" description: "Creates a specification field value by the specification field's ID. \n>⚠️ This is a legacy endpoint. We recommend using [Create Specification Value](https://developers.vtex.com/vtex-rest-api/reference/catalog-api-post-specification-value) instead. \n \n \n## Request body example \n \n```json \n{ \n \"FieldId\": 34, \n \"Name\": \"Cotton\", \n \"Text\": \"Cotton fibers\", \n \"IsActive\": true, \n \"Position\": 100 \n} \n``` \n \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: POST path: "/api/catalog_system/pvt/specification/fieldValue" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } FieldId: { type: "integer" format: "int32" description: "Specification Field 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." } } required: ["Accept", "Content-Type", "FieldId", "IsActive", "Name", "Position", "Text"] 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." } } } }