action appwrite_locale_get_currencies { label: "List Currencies" description: "List of all currencies, including currency symbol, name, plural, and decimal digits for all major and minor currencies. You can use the locale header to get the data in a supported language." provider: appwrite method: GET path: "/locale/currencies" encoding: json output: { type: "object" description: "Currencies List" required: ["currencies", "sum"] properties: { currencies: { type: "array" description: "List of currencies." items: { type: "object" description: "Currency" required: ["symbol", "name", "symbolNative", "decimalDigits", "rounding", "code", "namePlural"] properties: { code: { type: "string" description: "Currency code in [ISO 4217-1](http://en.wikipedia.org/wiki/ISO_4217) three-character format." } decimalDigits: { type: "integer" format: "int32" description: "Number of decimal digits." } name: { type: "string" description: "Currency name." } namePlural: { type: "string" description: "Currency plural name" } rounding: { type: "number" format: "float" description: "Currency digit rounding." } symbol: { type: "string" description: "Currency symbol." } symbolNative: { type: "string" description: "Currency native symbol." } } } } sum: { type: "integer" format: "int32" description: "Total sum of items in the list." } } } }