action api2cart_product_currency_add { label: "ProductCurrencyAdd" description: "Add currency and/or set default in store" provider: api2cart method: POST path: "/product.currency.add.json" encoding: json input: { type: "object" properties: { avail: { type: "boolean" } default: { type: "boolean" } iso3: { type: "string" } name: { type: "string" } rate: { type: "number" } symbol_left: { type: "string" } symbol_right: { type: "string" } } required: ["iso3", "rate"] additionalProperties: false } output: { type: "object" properties: { result: { type: "object" properties: { currency_id: { type: "string" } } } return_code: { type: "integer" } return_message: { type: "string" } } } }