action vtex_specification_group_insert2 { label: "Create Specification Group" description: "Create a specification group. \n>⚠️ It is also possible to create a Specification Group by using an alternative legacy route: `/api/catalog_system/pvt/specification/group`. \n## Request body example \n \n```json \n{ \n \"CategoryId\": 1, \n \"Name\": \"Sizes\" \n} \n``` \n \n## Response body example \n \n```json \n{ \n \"Id\": 6, \n \"CategoryId\": 1, \n \"Name\": \"Sizes\", \n \"Position\": 3 \n} \n```" provider: vtex method: POST path: "/api/catalog/pvt/specificationgroup" encoding: json input: { type: "object" properties: { Accept: { type: "string" } CategoryId: { type: "integer" format: "int32" description: "Category ID." } "Content-Type": { type: "string" } Name: { type: "string" description: "Specification Group Name." } } required: ["Accept", "CategoryId", "Content-Type", "Name"] additionalProperties: false } output: { type: "object" properties: { CategoryId: { type: "integer" format: "int32" description: "Category ID." } Id: { type: "integer" format: "int32" description: "Specification Group ID." } Name: { type: "string" description: "Specification Group Name." } Position: { type: "integer" format: "int32" description: "Store Framework - Deprecated. \nLegacy CMS Portal - Specification Group Position." } } } }