action api2cart_cart_giftcard_count { label: "CartGiftcardCount" description: "Get gift cards count." provider: api2cart method: GET path: "/cart.giftcard.count.json" encoding: json input: { type: "object" properties: { store_id: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { result: { type: "object" properties: { gift_cards_count: { type: "string" } } } return_code: { type: "integer" } return_message: { type: "string" } } } }