action vtex_specifications_group_get { label: "Get Specification Group" description: "Retrieves details from a specification group by the ID of the group. \n## Response body example \n \n```json \n{ \n \"CategoryId\": 1, \n \"Id\": 6, \n \"Name\": \"Sizes\", \n \"Position\": 3 \n} \n```" provider: vtex method: GET path: "/api/catalog_system/pub/specification/groupGet/{groupId}" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } groupId: { type: "string" } } required: ["Accept", "Content-Type", "groupId"] additionalProperties: false } output: { type: "object" required: ["CategoryId", "Id", "Name", "Position"] properties: { CategoryId: { type: "integer" 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: "Specification Group Position." } } } }