action api2cart_cart_giftcard_add { label: "CartGiftcardAdd" description: "Create new gift card" provider: api2cart method: POST path: "/cart.giftcard.add.json" encoding: json input: { type: "object" properties: { amount: { type: "number" } code: { type: "string" } owner_email: { type: "string" } recipient_email: { type: "string" } } required: ["amount"] additionalProperties: false } output: { type: "object" properties: { result: { type: "object" properties: { code: { type: "string" } id: { type: "string" } } } return_code: { type: "integer" } return_message: { type: "string" } } } }