action akeneo_attribute_groups_patch { label: "Update/create an attribute group" description: "This endpoint allows you to update a given attribute group. Know more about Update behavior. Note that if no attribute group exists for the given code, it creates it." provider: akeneo method: PATCH path: "/api/rest/v1/attribute-groups/{code}" encoding: json input: { type: "object" properties: { code: { type: "string" } } required: ["code"] additionalProperties: false } output: { type: "object" additionalProperties: true } }