# Get Image **GET /image/{orderNumber}** Get a payment-related image (QR code, payment slip) for an order. ## Servers - Production: https://ssl.komfortkasse.eu/api/v2 (Production) ## Authentication methods - Api key ## Parameters ### Path parameters - **orderNumber** (string) Order number (unique per shop). ### Query parameters - **type** (string) Image type to retrieve. ## Responses ### 200 Image data. #### Body: application/json (object) - **type** (string) Image type: - `QRCODE` — EPC QR Code (GiroCode) - `PAYMENTSLIP` — payment slip (Germany: "Überweisungsträger", Austria: "Zahlschein", Switzerland: "Einzahlungsschein") - `PAYMENTSLIPPRINT` — a payment slip that you can print yourself (currently only available for QR Invoice in Switzerland) - **format** (string) Image format. Always `png`. - **data** (string) Base64 encoded image data. ### 400 Invalid request — for example missing required fields or wrong format. #### Body: application/json (object) - **error** (string) Error message. ### 401 Authentication failed — API key missing or invalid. #### Body: application/json (object) - **error** (string) Error message. ### 404 Resource not found (e.g. unknown order number). #### Body: application/json (object) - **error** (string) Error message. [Powered by Bump.sh](https://bump.sh)