action appwrite_locale_get_countries_phones { label: "List Countries Phone Codes" description: "List of all countries phone codes. You can use the locale header to get the data in a supported language." provider: appwrite method: GET path: "/locale/countries/phones" encoding: json output: { type: "object" description: "Phones List" required: ["phones", "sum"] properties: { phones: { type: "array" description: "List of phones." items: { type: "object" description: "Phone" required: ["code", "countryCode", "countryName"] properties: { code: { type: "string" description: "Phone code." } countryCode: { type: "string" description: "Country two-character ISO 3166-1 alpha code." } countryName: { type: "string" description: "Country name." } } } } sum: { type: "integer" format: "int32" description: "Total sum of items in the list." } } } }