action api2cart_cart_coupon_delete { label: "CartCouponDelete" description: "Delete coupon" provider: api2cart method: DELETE path: "/cart.coupon.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" } } } }