action api2cart_product_currency_list { label: "ProductCurrencyList" description: "Get list of currencies" provider: api2cart method: GET path: "/product.currency.list.json" encoding: json input: { type: "object" properties: { avail: { type: "boolean" } count: { type: "integer" } default: { type: "boolean" } exclude: { type: "string" } page_cursor: { type: "string" } params: { type: "string" } response_fields: { type: "string" } start: { type: "integer" } } additionalProperties: false } output: { type: "object" properties: { result: { type: "object" properties: { currency: { type: "array" items: { type: "object" properties: { additional_fields: { type: "object" } avail: { type: "boolean" } custom_fields: { type: "object" } default: { type: "boolean" } id: { type: "string" } iso3: { type: "string" } name: { type: "string" } rate: { type: "number" } symbol_left: { type: "string" } symbol_right: { type: "string" } } } } } } return_code: { type: "integer" } return_message: { type: "string" } } } }