action api2cart_attribute_delete { label: "AttributeDelete" description: "Delete attribute from store" provider: api2cart method: DELETE path: "/attribute.delete.json" encoding: json input: { type: "object" properties: { id: { type: "string" } store_id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { result: { type: "object" properties: { deleted: { type: "string" } } } return_code: { type: "integer" } return_message: { type: "string" } } } }