action api2cart_attribute_unassign_group { label: "AttributeUnassignGroup" description: "Unassign attribute from group" provider: api2cart method: POST path: "/attribute.unassign.group.json" encoding: json input: { type: "object" properties: { group_id: { type: "string" } id: { type: "string" } } required: ["group_id", "id"] additionalProperties: false } output: { type: "object" properties: { result: { type: "object" properties: { unassigned: { type: "string" } } } return_code: { type: "integer" } return_message: { type: "string" } } } }