action appwrite_avatars_get_credit_card { label: "Get Credit Card Icon" description: "The credit card endpoint will return you the icon of the credit card provider you need. Use width, height and quality arguments to change the output settings." provider: appwrite method: GET path: "/avatars/credit-cards/{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 } }