action appwrite_avatars_get_flag { label: "Get Country Flag" description: "You can use this endpoint to show different country flags icons to your users. The code argument receives the 2 letter country code. Use width, height and quality arguments to change the output settings." provider: appwrite method: GET path: "/avatars/flags/{code}" encoding: json input: { type: "object" properties: { code: { type: "string" } height: { type: "integer" format: "int32" } quality: { type: "integer" format: "int32" } width: { type: "integer" format: "int32" } } required: ["code"] additionalProperties: false } output: { type: "object" additionalProperties: true } }