action appwrite_avatars_get_browser { label: "Get Browser Icon" description: "You can use this endpoint to show different browser icons to your users. The code argument receives the browser code as it appears in your user /account/sessions endpoint. Use width, height and quality arguments to change the output settings." provider: appwrite method: GET path: "/avatars/browsers/{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 } }