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