action api2cart_cart_coupon_count { label: "CartCouponCount" description: "Get cart coupons count." provider: api2cart method: GET path: "/cart.coupon.count.json" encoding: json input: { type: "object" properties: { avail: { type: "boolean" } date_end_from: { type: "string" } date_end_to: { type: "string" } date_start_from: { type: "string" } date_start_to: { type: "string" } store_id: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { result: { type: "object" properties: { coupons_count: { type: "string" } } } return_code: { type: "integer" } return_message: { type: "string" } } } }