action vtex_post_api_catalog_pvt_specificationvalue { label: "Create Specification Value" description: "Creates a new Specification Value for a Category. \n## Request body example \n \n```json \n{ \n \"FieldId\": 193, \n \"Name\": \"Metal\", \n \"IsActive\": true, \n \"Position\": 1 \n } \n``` \n \n## Response body example \n \n```json \n{ \n \"FieldValueId\": 360, \n \"FieldId\": 193, \n \"Name\": \"Metal\", \n \"Text\": null, \n \"IsActive\": true, \n \"Position\": 1 \n} \n```" provider: vtex method: POST path: "/api/catalog/pvt/specificationvalue" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } FieldId: { type: "integer" description: "Specification ID associated with this specification value." } IsActive: { type: "boolean" description: "Enable (`true`) or disable (`false`) specification value." } Name: { type: "string" description: "Specification Value name." } Position: { type: "integer" description: "The position of the value to be shown on product registration page (`/admin/Site/Produto.aspx`)." } Text: { type: "string" description: "Specification Value Text." } } required: ["Accept", "Content-Type", "FieldId", "Name"] additionalProperties: false } output: { type: "object" properties: { FieldId: { type: "integer" description: "Specification ID associated with this specification value." } FieldValueId: { type: "integer" description: "Specification value ID." } IsActive: { type: "boolean" description: "Enable (`true`) or disable (`false`) specification value." } Name: { type: "string" description: "Specification Value name." } Position: { type: "integer" description: "The position of the value to be shown on product registration page (`/admin/Site/Produto.aspx`)." } Text: { type: "string" description: "Specification Value Text." } } } }