action vtex_specifications_group_listby_category { label: "List Specification Group by Category" description: "Retrieves a list of specification groups by the category ID. \n## Response body example \n \n```json \n[ \n { \n \"CategoryId\": 1, \n \"Id\": 5, \n \"Name\": \"Materials\", \n \"Position\": 2 \n }, \n { \n \"CategoryId\": 1, \n \"Id\": 6, \n \"Name\": \"Sizes\", \n \"Position\": 3 \n } \n ] \n```" provider: vtex method: GET path: "/api/catalog_system/pvt/specification/groupbycategory/{categoryId}" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } categoryId: { type: "string" } } required: ["Accept", "Content-Type", "categoryId"] additionalProperties: false } output: { type: "array" items: { 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." } } } } }