ME-QR / API-QR-Code

API-QR-Code

Sie möchten QR-Codes in großem Umfang erstellen? Integrieren Sie unsere QR-Code-Generator-API in Ihr Unternehmen und automatisieren Sie Ihre Prozesse. Mit der Me-QR-API stehen Ihnen alle QR-Code-Typen zur Verfügung.

Generieren Sie Ihren ersten QR-Code in 10 Sekunden

Generieren Sie Ihren ersten QR-Code in Sekundenschnelle mit einer einzigen API-Anfrage.

Code
curl -X POST https://me-qr.com/api/v2/qr/link/create \
  -H "Content-Type: application/json" \
  -H "X-AUTH-TOKEN: YOUR_API_TOKEN" \
  -d '{
    "qrFieldsData": {
      "link": "https://example.com"
    },
    "format": "png",
    "designType": "base"
  }'
import requests

url = "https://me-qr.com/api/v2/qr/link/create"
headers = {
    "Content-Type": "application/json",
    "X-AUTH-TOKEN": "YOUR_API_TOKEN"
}
payload = {
    "qrFieldsData": {
        "link": "https://example.com"
    },
    "format": "png",
    "designType": "base"
}

response = requests.post(url, json=payload, headers=headers)
print(response.json())
const response = await fetch(
  'https://me-qr.com/api/v2/qr/link/create',
  {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
      'X-AUTH-TOKEN': 'YOUR_API_TOKEN'
    },
    body: JSON.stringify({
      qrFieldsData: { link: 'https://example.com' },
      format: 'png',
      designType: 'base'
    })
  }
);

const data = await response.json();
console.log(data);

QR-Code-Vorschau
QR code example generated via ME-QR API

Authentifizierung & API-Schlüssel

Verwenden Sie einen API-Schlüssel, um Ihre Anfragen zu authentifizieren.

Holen Sie sich Ihren API-Schlüssel

Sie finden es in Ihrem Dashboard:

Oberfläche Integrationen API-Schlüssel

Verwenden Sie es in Ihrer Anfrage

Fügen Sie Ihren API-Schlüssel dem Anfrageheader hinzu:

Authorization: Bearer YOUR_API_KEY

Nutzung, Beschränkungen und Zugriff

Alles, was Sie über API-Nutzung, Limits und Zugriff wissen müssen.

Nutzungspreise

Beinhaltet bis zu 10.000 QR-Codes pro Monat.

$0.005 / Anfrage

Bis zu 100.000 Anfragen

$0.0025 / Anfrage

100k+ requests

API-Zugang

Free

kostenloses

3 API-Schlüssel · Gültig für 3 Tage

Premium

Premium

Unbegrenzte API-Schlüssel · Kein Ablaufdatum

API-Limits: ~1 Anfrage/Sek. · 50 Anfragen/Min. (gilt für alle Tarife)

Wenden Sie sich an den Support, um zusätzliche Funktionen freizuschalten.

QR-Code-Parameter

Definieren Sie Inhalt, Aussehen und Ausgabe Ihrer QR-Codes mithilfe der verfügbaren Parameter.

Parameter Typ Standard Beschreibung
tokenerforderlich string API-Funktionalität Zugriffstoken
qrType integer 1 QR-Code-Typ: 1=Link, 4=PDF, 5=E-Mail, 7=VCard…
qrFieldsData object [] QR code content depending on the type (e.g. {"link": "https://…"})
title string "Qr Code" Der Titel des QR-Codes wird im Dashboard angezeigt.
format string "png" Ausgabeformat: png, svg, jpg, jpeg, json
designType string "base" QR-Designtyp: Basis oder Kunst
qrFolderOptions object null Folder placement: {"folderName": "…", "subfolderName": "…"}
entryId integer null Die ID des vorhandenen QR-Codes soll aktualisiert werden, anstatt einen neuen zu erstellen.

Farb- und Formparameter

Definieren Sie Inhalt, Aussehen und Ausgabe Ihrer QR-Codes mithilfe der verfügbaren Parameter.

Parameter Typ Standard Beschreibung
qrOptions
size integer 300 Größe des zurückgegebenen QR-Codes in Pixeln
errorCorrectionLevel string "Q" Fehlerkorrektur: L, M, Q, H
pattern string "square" Punktmuster: quadratisch, gepunktet, abgerundet, elegant, rautenförmig, funkelnd…
patternColor string "#000000" Die Farbe der Punkte QR-Code
patternBackground string "#ffffff" Hintergrundfarbe des QR-Codes
cornetsOuter string "square" Stil der äußeren Ecken: quadratisch, gepunktet, elegant, zahnradförmig, extra abgerundet…
cornetsOuterColor string "#000000" Farbe der äußeren Ecken
cornetsInterior string "square" Stil der Innenecke: Quadrat, Punkt, klassisch, Raute, Stern…
cornetsInteriorColor string "#000000" Farbe der inneren Ecken
logotype string null Logo in der Mitte: vordefinierte Aufzählung, URL oder Base64-Bild
logotypeSize number 0.3 Logo-Größenkoeffizient 0–1 (empfohlener Maximalwert: 0,5)
logotypeMargin number 0 Logo-Abstand in Pixeln
logotypeHideBackground boolean true Vom Logo verdeckte Punkte ausblenden
gradientPattern object null Farbverlauf für Punkte: {Typ, Drehung, Farben[]}
gradientCornetsOuter object null Farbverlauf für äußere Ecken
gradientCornetsInterior object null Farbverlauf für innere Ecken
gradientBackground object null Farbverlauf für den Hintergrund
qrFrame
name string "noFrame" Rahmendesign (über 200 Optionen oder ohne Rahmen)
color string "#000000" Rahmenfarbe
backgroundColor string "#ffffff" Rahmenhintergrundfarbe
text string "" Rahmenbeschriftungstext (max. 20 Zeichen)
textSize integer null Schriftgröße in Pixel (1–50)
textColor string "#9C3AAF" Rahmentextfarbe
textFont string "Roboto" Schriftart: Arial, Roboto, Georgia, Verdana…

Beispielanfragen & Ergebnisse

Entdecken Sie Beispiel-API-Anfragen und die von ihnen generierten QR-Codes.

Einfacher QR-Code

Anfrage-URL
https://me-qr.com/api/v2/qr/link/create

Anfragemethode
POST

Code
curl -X POST https://me-qr.com/api/v2/qr/link/create \
  -H "Content-Type: application/json" \
  -H "X-AUTH-TOKEN: YOUR_API_TOKEN" \
  -d '{
    "qrFieldsData": {
      "link": "https://example.com"
    },
    "format": "png"
  }'

QR-Code-Vorschau
Basic QR code generated via ME-QR API

QR-Code mit Farben

Anfrage-URL
https://me-qr.com/api/v2/qr/link/create

Anfragemethode
POST

Code
curl -X POST https://me-qr.com/api/v2/qr/link/create \
  -H "Content-Type: application/json" \
  -H "X-AUTH-TOKEN: YOUR_API_TOKEN" \
  -d '{
    "qrFieldsData": {
      "link": "https://example.com"
    },
    "format": "png",
    "qrOptions": {
      "patternColor": "#FFFFFF",
      "patternBackground": "#173782",
      "cornetsOuterColor": "#0281fb",
      "cornetsInteriorColor": "#0281fb"
    }
  }'

QR-Code-Vorschau
Colored QR code generated via ME-QR API

QR-Code mit Rahmen

Anfrage-URL
https://me-qr.com/api/v2/qr/link/create

Anfragemethode
POST

Code
curl -X POST https://me-qr.com/api/v2/qr/link/create \
  -H "Content-Type: application/json" \
  -H "X-AUTH-TOKEN: YOUR_API_TOKEN" \
  -d '{
    "qrFieldsData": {
      "link": "https://example.com"
    },
    "format": "png",
    "qrOptions": {
      "logotype": "youTubeLogotype",
      "logotypeSize": 0.3,
      "logotypeMargin": 5,
      "logotypeHideBackground": true
    },
    "qrFrame": {
      "name": "frame1",
      "color": "ff0000",
      "backgroundColor": "#ffffff",
      "text": "Scan me!",
      "textColor": "#FFFFFF"
    }
  }'

QR-Code-Vorschau
QR code with frame generated via ME-QR API

API QR-Code: QR-Generator-API für verschiedene Zwecke

API QR Code ist ein leistungsstarkes Tool zur Stapelverarbeitung von QR-Codes und deren nahtloser Integration in Geschäftsprozesse. Es ermöglicht die Automatisierung mithilfe der QR-Technologie. Diese API trägt maßgeblich zur Optimierung von Abläufen und Effizienzsteigerungen bei und bietet eine robuste Lösung für Unternehmen, die QR-Codes in ihre Arbeitsabläufe integrieren möchten.

Ein bemerkenswertes Beispiel für die Funktionalität der API liefert der Endpunkt /api/qr/create/, mit dem Sie QR-Codes programmatisch generieren können:

Post /api/qr/create/ QR-Code nach Typ erstellen

Ermöglicht die Generierung eines QR-Codes mithilfe eines der auf me-qr verfügbaren Typen. Jede Anfrage generiert einen neuen QR-Code.

Parameter

Keine Parameter

Anfragekörper
application/json
{
  "token": "string",
  "qrType": 1,
  "qrFieldsData": {
    "link": "https://example.com"
  },
  "entryId": null,
  "title": "Qr Code",
  "format": "png",
  "designType": "base",
  "qrFolderOptions": {
    "folderName": null,
    "subfolderName": null
  },
  "qrOptions": {
    "size": 300,
    "errorCorrectionLevel": "Q",
    "pattern": "square",
    "patternColor": "#000000",
    "patternBackground": "#ffffff",
    "cornetsOuter": "square",
    "cornetsOuterColor": "#000000",
    "cornetsInterior": "square",
    "cornetsInteriorColor": "#000000",
    "logotype": null,
    "logotypeSize": 0.3,
    "logotypeMargin": 0,
    "logotypeHideBackground": true,
    "gradientPattern": null,
    "gradientCornetsOuter": null,
    "gradientCornetsInterior": null,
    "gradientBackground": null
  },
  "qrFrame": {
    "name": "noFrame",
    "color": "#000000",
    "backgroundColor": "#ffffff",
    "text": "",
    "textSize": null,
    "textColor": "#9C3AAF",
    "textFont": "Roboto"
  }
}
Antworten
Code Beschreibung Links
default Keine Links

QR-Generator-API – Volle Kontrolle

Die Me-QR Generator API bietet umfassende Kontrolle über die QR-Code-Generierung und stellt Ihnen eine Reihe von Funktionen zur Verfügung, mit denen Sie QR-Codes an Ihre spezifischen Bedürfnisse anpassen können:

API-Länder

Ruft eine Liste der unterstützten Länder für die benutzerdefinierte QR-Code-API ab.

Get /api/v2/countries/ Liste der Länder

Rufe die Liste der verfügbaren Länder ab.

Parameter
Name Beschreibung
country
string
(query)

Suche nach Ländernamen.

Antworten
Code Beschreibung Links
200

Erfolgreiche Antwort

application/json
[
  {
    "id": 0,
    "name": "string"
  }
]
Keine Links

Dieser Endpunkt ermöglicht es Ihnen, eine Liste der verfügbaren Länder abzurufen und so die Lokalisierung und Anpassung auf Basis geografischer Präferenzen zu erleichtern.

API-Städte

Rufen Sie eine Liste der unterstützten Städte auf, um die QR-Code-Details genau anzupassen.

Get /api/v2/cities/ Liste der Städte

Rufe die Liste der verfügbaren Städte ab.

Parameter
Name Beschreibung
country
string
(query)

Suche nach Ländernamen.

Antworten
Code Beschreibung Links
200

Erfolgreiche Antwort

application/json
[
  {
    "id": 0,
    "name": "string"
  }
]
Keine Links

Mit dieser Funktion können Sie bestimmte Städte auswählen und so die Relevanz von QR-Codes für standortspezifische Kampagnen oder die Verbreitung von Informationen erhöhen.

API-Zeitzonen

Ermitteln Sie die unterstützten Zeitzonen, um zeitkritische Informationen in QR-Codes einzubinden.

Get /api/v2/timezones/ Liste der Zeitzonen

Rufe die Liste der verfügbaren Zeitzonen ab.

Parameter
Name Beschreibung
timezone
string
(query)

Suche nach Zeitzonennamen.

Antworten
Code Beschreibung Links
200

Erfolgreiche Antwort

application/json
[
  {
    "id": 0,
    "name": "string"
  }
]
Keine Links

Diese Funktionalität ermöglicht es Ihnen, QR-Code-Inhalte mit zeitbezogenen Daten abzugleichen und so Relevanz und Aktualität zu gewährleisten.

API-Sprachen

Hier finden Sie eine Liste der unterstützten Sprachen für QR-Code-Text und Inhaltsanpassung.

Get /api/v2/languages/ Liste der Sprachen

Rufe die Liste der verfügbaren Sprachen ab.

Parameter
Name Beschreibung
language
string
(query)

Suche nach Sprachnamen.

Antworten
Code Beschreibung Links
200

Erfolgreiche Antwort

application/json
[
  {
    "id": 0,
    "name": "string"
  }
]
Keine Links

Sie können diese Funktion nutzen, um unterschiedlichen Sprachpräferenzen gerecht zu werden und QR-Codes in mehrsprachigen Kontexten zugänglicher und benutzerfreundlicher zu gestalten.

Die durch diese Funktionen gebotene Flexibilität ermöglicht es Ihnen, eine dynamische QR-Code-API zu erstellen, die auf bestimmte Regionen, Städte, Zeitzonen und Sprachen zugeschnitten ist, und dadurch die Effektivität Ihrer QR-basierten Kommunikations- und Interaktionsstrategien zu steigern.

QR-Generator-API-Typen

Unsere QR-Code-Generator-API bietet eine Vielzahl von QR-Code-Typen für unterschiedliche Bedürfnisse und Funktionen. Im Folgenden werden einige dieser Typen genauer betrachtet.

QR-Code-Zahlungs-API

Die kostenlose QR-Code-API erweist sich im Zahlungsverkehr aufgrund ihrer nahtlosen und effizienten Funktionsweise als wertvoll. Sie vereinfacht Transaktionen, erhöht die Sicherheit und beschleunigt die monatliche QR-Code-Zahlung. Hier ist ein einfaches Codebeispiel, das die Verwendung demonstriert:

Post /api/v2/qr/payment/create QR-Code-Zahlungs-API
QR-Code-Zahlungs-API

Eine kostenlose QR-Code-API erweist sich im Zahlungsverkehr als wertvoll, da sie Unternehmen und Privatpersonen die Abwicklung von Transaktionen vereinfacht. Durch Einbetten einer Zahlungs-URL in einen QR-Code können Kunden den Code schnell mit ihren Smartphones scannen und Transaktionen reibungslos abschließen.

Anfragekörper application/json
{
  "qrFieldsData": {
    "link"*: "https://example.com/pay"
  }
}
Feld Typ Erforderlich Beschreibung
link string($hostname) required URL der Zahlungsseite

Generieren Sie mit unserer QR-Code-API Ihre Zahlungsprozesse und verwandeln Sie Transaktionen in nahtlose und effiziente Erlebnisse.

Generieren Sie mit unserer QR-Code-API Ihre Zahlungsprozesse und revolutionieren Sie diese. Integrieren Sie sichere und effiziente Transaktionen nahtlos in Ihre Anwendungen.

PayPal QR-Code-API

Ein beispielhaftes Beispiel für eine QR-Code-Zahlungs-API ist der PayPal-QR-Code. PayPal, bekannt als führender Anbieter von Online-Zahlungen, ermöglicht durch seine API-Integration sichere und unkomplizierte Transaktionen. Hier eine einfache Veranschaulichung der Implementierung:

Post /api/v2/qr/paypal/create QR-Code PayPal-API
QR-Code PayPal-API

Die PayPal QR-Code-API ermöglicht die nahtlose Integration von PayPal-Zahlungslinks in QR-Codes. Nutzer können den QR-Code scannen und werden direkt zur PayPal-Zahlungsseite weitergeleitet. Dadurch werden Transaktionen für Unternehmen und Kunden schnell und bequem.

Anfragekörper application/json
{
  "qrFieldsData": {
    "link"*: "https://paypal.me/username"
  }
}
Feld Typ Erforderlich Beschreibung
link string($hostname) required PayPal.me oder Zahlungs-URL

Nutzen Sie die PayPal QR Code API, um Ihren Zahlungsprozess zu vereinfachen und zu beschleunigen und Ihren Nutzern ein modernes Checkout-Erlebnis zu bieten.

Verbessern Sie Ihr Online-Zahlungserlebnis mit der PayPal QR-Code-API von Me-QR. Integrieren Sie sichere und effiziente PayPal-Transaktionen mühelos in Ihre Anwendungen.

So generieren Sie einen WhatsApp-QR-Code über die API

Der WhatsApp-API-QR-Code nimmt unter den QR-Code-APIs für Messenger eine herausragende Stellung ein. Die Nutzung dieser API ermöglicht eine nahtlose Interaktion durch schnellen Zugriff auf WhatsApp und macht sie damit zu einem führenden Anbieter von Messenger-basierten QR-Code-Funktionen. Hier ein Beispiel:

Post /api/v2/qr/whatsapp/create QR-Code-WhatsApp-API
QR-Code-WhatsApp-API

Mit der WhatsApp QR-Code-API können Sie QR-Codes generieren, die eine WhatsApp-Konversation mit einer vorausgefüllten Nachricht öffnen. Geben Sie einfach eine Telefonnummer und optional eine Nachricht an – ideal für Kundensupport, Marketingkampagnen und die sofortige Interaktion.

Anfragekörper application/json
{
  "qrFieldsData": {
    "phone"*: "+1234567890",
    "message"*: "Hello!"
  }
}
Feld Typ Erforderlich Beschreibung
phone string required Telefonnummer des Empfängers im internationalen Format
message string required Vorausgefüllter Nachrichtentext

Integrieren Sie die WhatsApp QR Code API, um mit einem einzigen Scan direkte Konversationen zu fördern und die Interaktion zu steigern.

Verbinden Sie sich nahtlos mit Ihrer Zielgruppe über den WhatsApp-QR-Code. Ermöglichen Sie den schnellen Zugriff auf Konversationen mit nur einem Scan und verbessern Sie so Ihr Messaging-Erlebnis.

Entdecken Sie weitere QR-API-Typen mit Me-QR.

Die kostenlose QR-Code-API bietet eine umfassende Auswahl an QR-Code-API-Generatoren für unterschiedlichste Anforderungen. Entdecken Sie die am häufigsten unterstützten QR-Code-API-Typen und Codebeispiele für jeden Typ:

Instagram

Verbinde dich mit Instagram-Profilen über QR-Codes.

Post /api/v2/qr/instagram/create

Generieren Sie einen QR-Code, der direkt zu einem Instagram-Profil oder -Beitrag verlinkt.

Anfragekörper application/json
{
  "qrFieldsData": {
    "link": "https://www.instagram.com/username"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Put /api/v2/qr/instagram/update/{entryUID}

Ändern von Daten- und Stylingparametern des QR-Codes.

Parameter

entryUIDpath  ID oder eindeutiger Zugangsschlüssel (QR-Code)

Anfragekörper application/json
{
  "qrFieldsData": {
    "link": "https://www.instagram.com/username"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Get /api/v2/qr/instagram/{entryUID}

Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.

Parameter

entryUID path  ID oder eindeutiger Zugangsschlüssel (QR-Code)

format query  Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.

Antwort 200 application/json
{
  "qrFieldsData": {
    "link": "https://www.instagram.com/username"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }

Facebook

Verlinkung zu Facebook-Profilen oder -Seiten über die QR Code Generator REST-API.

Post /api/v2/qr/facebook/create

Generieren Sie einen QR-Code, der zu einer Facebook-Seite, -Gruppe oder einem Profil verlinkt.

Anfragekörper application/json
{
  "qrFieldsData": {
    "link": "https://www.facebook.com/pagename"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Put /api/v2/qr/facebook/update/{entryUID}

Ändern von Daten- und Stylingparametern des QR-Codes.

Parameter

entryUIDpath  ID oder eindeutiger Zugangsschlüssel (QR-Code)

Anfragekörper application/json
{
  "qrFieldsData": {
    "link": "https://www.facebook.com/pagename"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Get /api/v2/qr/facebook/{entryUID}

Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.

Parameter

entryUID path  ID oder eindeutiger Zugangsschlüssel (QR-Code)

format query  Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.

Antwort 200 application/json
{
  "qrFieldsData": {
    "link": "https://www.facebook.com/pagename"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }

Twitter

Greifen Sie über QR-Codes auf Twitter-Profile oder Tweets zu.

Post /api/v2/qr/twitter/create

Erstellen Sie einen QR-Code, der Benutzer zu einem Twitter/X-Profil oder Tweet weiterleitet.

Anfragekörper application/json
{
  "qrFieldsData": {
    "link": "https://twitter.com/username"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Put /api/v2/qr/twitter/update/{entryUID}

Ändern von Daten- und Stylingparametern des QR-Codes.

Parameter

entryUIDpath  ID oder eindeutiger Zugangsschlüssel (QR-Code)

Anfragekörper application/json
{
  "qrFieldsData": {
    "link": "https://twitter.com/username"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Get /api/v2/qr/twitter/{entryUID}

Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.

Parameter

entryUID path  ID oder eindeutiger Zugangsschlüssel (QR-Code)

format query  Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.

Antwort 200 application/json
{
  "qrFieldsData": {
    "link": "https://twitter.com/username"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }

TikTok

Entdecke TikTok-Profile mithilfe von QR-Codes.

Post /api/v2/qr/tiktok/create

Generieren Sie einen QR-Code, der zu einem TikTok-Profil oder -Video verlinkt.

Anfragekörper application/json
{
  "qrFieldsData": {
    "link": "https://www.tiktok.com/@username"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Put /api/v2/qr/tiktok/update/{entryUID}

Ändern von Daten- und Stylingparametern des QR-Codes.

Parameter

entryUIDpath  ID oder eindeutiger Zugangsschlüssel (QR-Code)

Anfragekörper application/json
{
  "qrFieldsData": {
    "link": "https://www.tiktok.com/@username"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Get /api/v2/qr/tiktok/{entryUID}

Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.

Parameter

entryUID path  ID oder eindeutiger Zugangsschlüssel (QR-Code)

format query  Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.

Antwort 200 application/json
{
  "qrFieldsData": {
    "link": "https://www.tiktok.com/@username"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }

Snapchat

Verbinde dich mit Profilen über Snapchat QR.

Post /api/v2/qr/snapchat/create

Generieren Sie einen QR-Code, der direkt zu einem Snapchat-Profil verlinkt.

Anfragekörper application/json
{
  "qrFieldsData": {
    "link": "https://www.snapchat.com/add/username"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Put /api/v2/qr/snapchat/update/{entryUID}

Ändern von Daten- und Stylingparametern des QR-Codes.

Parameter

entryUIDpath  ID oder eindeutiger Zugangsschlüssel (QR-Code)

Anfragekörper application/json
{
  "qrFieldsData": {
    "link": "https://www.snapchat.com/add/username"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Get /api/v2/qr/snapchat/{entryUID}

Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.

Parameter

entryUID path  ID oder eindeutiger Zugangsschlüssel (QR-Code)

format query  Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.

Antwort 200 application/json
{
  "qrFieldsData": {
    "link": "https://www.snapchat.com/add/username"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }

Telegram

Interagiere mit Telegram-Kanälen oder -Gruppen mithilfe von QR-Codes.

Post /api/v2/qr/telegram/create

Erstelle einen QR-Code, der zu einem Telegram-Kanal, Bot oder Kontakt verlinkt.

Anfragekörper application/json
{
  "qrFieldsData": {
    "link": "https://t.me/username"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Put /api/v2/qr/telegram/update/{entryUID}

Ändern von Daten- und Stylingparametern des QR-Codes.

Parameter

entryUIDpath  ID oder eindeutiger Zugangsschlüssel (QR-Code)

Anfragekörper application/json
{
  "qrFieldsData": {
    "link": "https://t.me/username"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Get /api/v2/qr/telegram/{entryUID}

Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.

Parameter

entryUID path  ID oder eindeutiger Zugangsschlüssel (QR-Code)

format query  Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.

Antwort 200 application/json
{
  "qrFieldsData": {
    "link": "https://t.me/username"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }

Spotify

Greifen Sie über QR-Codes auf bestimmte Spotify-Songs, -Alben oder -Künstler zu.

Post /api/v2/qr/spotify/create

Generieren Sie einen QR-Code, der eine Spotify-Titel-, Album- oder Künstlerseite öffnet.

Anfragekörper application/json
{
  "qrFieldsData": {
    "link": "https://open.spotify.com/track/..."
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Put /api/v2/qr/spotify/update/{entryUID}

Ändern von Daten- und Stylingparametern des QR-Codes.

Parameter

entryUIDpath  ID oder eindeutiger Zugangsschlüssel (QR-Code)

Anfragekörper application/json
{
  "qrFieldsData": {
    "link": "https://open.spotify.com/track/..."
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Get /api/v2/qr/spotify/{entryUID}

Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.

Parameter

entryUID path  ID oder eindeutiger Zugangsschlüssel (QR-Code)

format query  Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.

Antwort 200 application/json
{
  "qrFieldsData": {
    "link": "https://open.spotify.com/track/..."
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }

Youtube

YouTube-Kanäle oder Videos mithilfe von QR-Codes ansehen.

Post /api/v2/qr/youtube/create

Erstelle einen QR-Code, der zu einem YouTube-Kanal oder -Video verlinkt.

Anfragekörper application/json
{
  "qrFieldsData": {
    "link": "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Put /api/v2/qr/youtube/update/{entryUID}

Ändern von Daten- und Stylingparametern des QR-Codes.

Parameter

entryUIDpath  ID oder eindeutiger Zugangsschlüssel (QR-Code)

Anfragekörper application/json
{
  "qrFieldsData": {
    "link": "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Get /api/v2/qr/youtube/{entryUID}

Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.

Parameter

entryUID path  ID oder eindeutiger Zugangsschlüssel (QR-Code)

format query  Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.

Antwort 200 application/json
{
  "qrFieldsData": {
    "link": "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }

Video

Genießen Sie die Videowiedergabe auf Mobilgeräten mithilfe von in die Videos eingebetteten QR-Codes.

Post /api/v2/qr/video/create

Generieren Sie einen QR-Code, der zu einer beliebigen Online-Videoressource verlinkt.

Anfragekörper application/json
{
  "qrFieldsData": {
    "link": "https://example.com/video.mp4"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Put /api/v2/qr/video/update/{entryUID}

Ändern von Daten- und Stylingparametern des QR-Codes.

Parameter

entryUIDpath  ID oder eindeutiger Zugangsschlüssel (QR-Code)

Anfragekörper application/json
{
  "qrFieldsData": {
    "link": "https://example.com/video.mp4"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Get /api/v2/qr/video/{entryUID}

Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.

Parameter

entryUID path  ID oder eindeutiger Zugangsschlüssel (QR-Code)

format query  Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.

Antwort 200 application/json
{
  "qrFieldsData": {
    "link": "https://example.com/video.mp4"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }

Etsy

Durchsuchen Sie bestimmte Etsy-Produkte mithilfe von QR-Codes.

Post /api/v2/qr/etsy/create

Erstelle einen QR-Code, der zu einem Etsy-Shop oder einer Produktliste verlinkt.

Anfragekörper application/json
{
  "qrFieldsData": {
    "link": "https://www.etsy.com/shop/storename"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Put /api/v2/qr/etsy/update/{entryUID}

Ändern von Daten- und Stylingparametern des QR-Codes.

Parameter

entryUIDpath  ID oder eindeutiger Zugangsschlüssel (QR-Code)

Anfragekörper application/json
{
  "qrFieldsData": {
    "link": "https://www.etsy.com/shop/storename"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Get /api/v2/qr/etsy/{entryUID}

Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.

Parameter

entryUID path  ID oder eindeutiger Zugangsschlüssel (QR-Code)

format query  Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.

Antwort 200 application/json
{
  "qrFieldsData": {
    "link": "https://www.etsy.com/shop/storename"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }

Shaped

Generieren Sie QR-Codes mit einzigartigen Formen und Designs zur Stärkung Ihrer Markenpräsenz.

Post /api/v2/qr/shaped/create

Generieren Sie einen QR-Code mit einem individuell gestalteten Design, der zu einer beliebigen Webressource verlinkt.

Anfragekörper application/json
{
  "qrFieldsData": {
    "link": "https://example.com"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Put /api/v2/qr/shaped/update/{entryUID}

Ändern von Daten- und Stylingparametern des QR-Codes.

Parameter

entryUIDpath  ID oder eindeutiger Zugangsschlüssel (QR-Code)

Anfragekörper application/json
{
  "qrFieldsData": {
    "link": "https://example.com"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Get /api/v2/qr/shaped/{entryUID}

Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.

Parameter

entryUID path  ID oder eindeutiger Zugangsschlüssel (QR-Code)

format query  Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.

Antwort 200 application/json
{
  "qrFieldsData": {
    "link": "https://example.com"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }

Google Tabellen

Bestimmte Google Sheets-Tabellenkalkulationen können direkt über QR-Codes geöffnet werden.

Post /api/v2/qr/google-sheets/create

Erstelle einen QR-Code, der auf ein freigegebenes Google Sheets-Dokument verlinkt.

Anfragekörper application/json
{
  "qrFieldsData": {
    "link": "https://docs.google.com/spreadsheets/d/..."
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Put /api/v2/qr/google-sheets/update/{entryUID}

Ändern von Daten- und Stylingparametern des QR-Codes.

Parameter

entryUIDpath  ID oder eindeutiger Zugangsschlüssel (QR-Code)

Anfragekörper application/json
{
  "qrFieldsData": {
    "link": "https://docs.google.com/spreadsheets/d/..."
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Get /api/v2/qr/google-sheets/{entryUID}

Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.

Parameter

entryUID path  ID oder eindeutiger Zugangsschlüssel (QR-Code)

format query  Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.

Antwort 200 application/json
{
  "qrFieldsData": {
    "link": "https://docs.google.com/spreadsheets/d/..."
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }

Google Doc

Greifen Sie mithilfe von QR-Codes auf bestimmte Google Docs-Dokumente zu.

Post /api/v2/qr/google-doc/create

Generieren Sie einen QR-Code, der ein freigegebenes Google Docs-Dokument öffnet.

Anfragekörper application/json
{
  "qrFieldsData": {
    "link": "https://docs.google.com/document/d/..."
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Put /api/v2/qr/google-doc/update/{entryUID}

Ändern von Daten- und Stylingparametern des QR-Codes.

Parameter

entryUIDpath  ID oder eindeutiger Zugangsschlüssel (QR-Code)

Anfragekörper application/json
{
  "qrFieldsData": {
    "link": "https://docs.google.com/document/d/..."
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Get /api/v2/qr/google-doc/{entryUID}

Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.

Parameter

entryUID path  ID oder eindeutiger Zugangsschlüssel (QR-Code)

format query  Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.

Antwort 200 application/json
{
  "qrFieldsData": {
    "link": "https://docs.google.com/document/d/..."
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }

Google Forms

Nehmen Sie an Umfragen oder Quizzen teil, indem Sie QR-Codes verwenden, die zu bestimmten Google-Formularen führen.

Post /api/v2/qr/google-forms/create

Erstellen Sie einen QR-Code, der zu einer Google Forms-Umfrage oder einem Quiz verlinkt.

Anfragekörper application/json
{
  "qrFieldsData": {
    "link": "https://forms.google.com/..."
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Put /api/v2/qr/google-forms/update/{entryUID}

Ändern von Daten- und Stylingparametern des QR-Codes.

Parameter

entryUIDpath  ID oder eindeutiger Zugangsschlüssel (QR-Code)

Anfragekörper application/json
{
  "qrFieldsData": {
    "link": "https://forms.google.com/..."
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Get /api/v2/qr/google-forms/{entryUID}

Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.

Parameter

entryUID path  ID oder eindeutiger Zugangsschlüssel (QR-Code)

format query  Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.

Antwort 200 application/json
{
  "qrFieldsData": {
    "link": "https://forms.google.com/..."
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }

Google-Rezension

Teilen Sie Google My Business-Rezensionen mithilfe von QR-Codes.

Post /api/v2/qr/google-review/create

Generieren Sie einen QR-Code, der Kunden dazu anleitet, eine Google-Bewertung für Ihr Unternehmen abzugeben.

Anfragekörper application/json
{
  "qrFieldsData": {
    "link": "https://g.page/your-business/review"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Put /api/v2/qr/google-review/update/{entryUID}

Ändern von Daten- und Stylingparametern des QR-Codes.

Parameter

entryUIDpath  ID oder eindeutiger Zugangsschlüssel (QR-Code)

Anfragekörper application/json
{
  "qrFieldsData": {
    "link": "https://g.page/your-business/review"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Get /api/v2/qr/google-review/{entryUID}

Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.

Parameter

entryUID path  ID oder eindeutiger Zugangsschlüssel (QR-Code)

format query  Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.

Antwort 200 application/json
{
  "qrFieldsData": {
    "link": "https://g.page/your-business/review"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }

Office365

Verlinken Sie Microsoft Office 365-Dokumente mithilfe von QR-Codes.

Post /api/v2/qr/office365/create

Erstellen Sie einen QR-Code, der zu einem Microsoft Office 365-Dokument oder einer SharePoint-Ressource verlinkt.

Anfragekörper application/json
{
  "qrFieldsData": {
    "link": "https://office365.com/..."
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Put /api/v2/qr/office365/update/{entryUID}

Ändern von Daten- und Stylingparametern des QR-Codes.

Parameter

entryUIDpath  ID oder eindeutiger Zugangsschlüssel (QR-Code)

Anfragekörper application/json
{
  "qrFieldsData": {
    "link": "https://office365.com/..."
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Get /api/v2/qr/office365/{entryUID}

Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.

Parameter

entryUID path  ID oder eindeutiger Zugangsschlüssel (QR-Code)

format query  Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.

Antwort 200 application/json
{
  "qrFieldsData": {
    "link": "https://office365.com/..."
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }

Email

Beim Scannen von QR-Codes werden automatisch E-Mails versendet, sodass Nutzer Nachrichten verfassen können, ohne die Adresse eintippen zu müssen.

Post /api/v2/qr/email/create

Erstellen Sie einen QR-Code, der ein E-Mail-Programm mit vorausgefülltem Empfänger, Betreff und Nachrichtentext öffnet.

Anfragekörper application/json
{
  "qrFieldsData": {
    "emailTo": "user@example.com",
    "subject": "Hello",
    "body": "Your message here"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Put /api/v2/qr/email/update/{entryUID}

Ändern von Daten- und Stylingparametern des QR-Codes.

Parameter

entryUIDpath  ID oder eindeutiger Zugangsschlüssel (QR-Code)

Anfragekörper application/json
{
  "qrFieldsData": {
    "emailTo": "user@example.com",
    "subject": "Hello",
    "body": "Your message here"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Get /api/v2/qr/email/{entryUID}

Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.

Parameter

entryUID path  ID oder eindeutiger Zugangsschlüssel (QR-Code)

format query  Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.

Antwort 200 application/json
{
  "qrFieldsData": {
    "emailTo": "user@example.com",
    "subject": "Hello",
    "body": "Your message here"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }

Telefon

Wählen Sie Telefonnummern direkt über QR-Codes, die zu den Telefonnummern führen.

Post /api/v2/qr/phone/create

Generieren Sie einen QR-Code, der beim Scannen automatisch eine Telefonnummer wählt.

Anfragekörper application/json
{
  "qrFieldsData": {
    "phoneTo": "+1234567890"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Put /api/v2/qr/phone/update/{entryUID}

Ändern von Daten- und Stylingparametern des QR-Codes.

Parameter

entryUIDpath  ID oder eindeutiger Zugangsschlüssel (QR-Code)

Anfragekörper application/json
{
  "qrFieldsData": {
    "phoneTo": "+1234567890"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Get /api/v2/qr/phone/{entryUID}

Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.

Parameter

entryUID path  ID oder eindeutiger Zugangsschlüssel (QR-Code)

format query  Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.

Antwort 200 application/json
{
  "qrFieldsData": {
    "phoneTo": "+1234567890"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }

WiFi

Generieren Sie QR-Codes für WLAN-Netzwerke, einschließlich SSID, Passwort und Sicherheitstyp.

Post /api/v2/qr/wifi/create

Erstellen Sie einen QR-Code, der Benutzer automatisch mit einem WLAN-Netzwerk verbindet.

Anfragekörper application/json
{
  "qrFieldsData": {
    "ssid": "NetworkName",
    "encryption": "wpa/wpa2",
    "password": "secret123"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Put /api/v2/qr/wifi/update/{entryUID}

Ändern von Daten- und Stylingparametern des QR-Codes.

Parameter

entryUIDpath  ID oder eindeutiger Zugangsschlüssel (QR-Code)

Anfragekörper application/json
{
  "qrFieldsData": {
    "ssid": "NetworkName",
    "encryption": "wpa/wpa2",
    "password": "secret123"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Get /api/v2/qr/wifi/{entryUID}

Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.

Parameter

entryUID path  ID oder eindeutiger Zugangsschlüssel (QR-Code)

format query  Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.

Antwort 200 application/json
{
  "qrFieldsData": {
    "ssid": "NetworkName",
    "encryption": "wpa/wpa2",
    "password": "secret123"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }

Text

Teilen Sie Nachrichten oder Informationen mithilfe von QR-Codes, die Klartext enthalten.

Post /api/v2/qr/text/create

Generieren Sie einen QR-Code, der beim Scannen Klartext oder HTML-Inhalte anzeigt.

Anfragekörper application/json
{
  "qrFieldsData": {
    "text": "Your custom text here"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Put /api/v2/qr/text/update/{entryUID}

Ändern von Daten- und Stylingparametern des QR-Codes.

Parameter

entryUIDpath  ID oder eindeutiger Zugangsschlüssel (QR-Code)

Anfragekörper application/json
{
  "qrFieldsData": {
    "text": "Your custom text here"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Get /api/v2/qr/text/{entryUID}

Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.

Parameter

entryUID path  ID oder eindeutiger Zugangsschlüssel (QR-Code)

format query  Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.

Antwort 200 application/json
{
  "qrFieldsData": {
    "text": "Your custom text here"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }

Map

Über eine API für QR-Codes können Sie auf bestimmte Orte wie Adressen, Sehenswürdigkeiten oder Points of Interest zugreifen.

Post /api/v2/qr/map/create

Erstelle einen QR-Code, der einen bestimmten Ort in Google Maps öffnet.

Anfragekörper application/json
{
  "qrFieldsData": {
    "latitude": "48.8566",
    "longitude": "2.3522"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Put /api/v2/qr/map/update/{entryUID}

Ändern von Daten- und Stylingparametern des QR-Codes.

Parameter

entryUIDpath  ID oder eindeutiger Zugangsschlüssel (QR-Code)

Anfragekörper application/json
{
  "qrFieldsData": {
    "latitude": "48.8566",
    "longitude": "2.3522"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Get /api/v2/qr/map/{entryUID}

Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.

Parameter

entryUID path  ID oder eindeutiger Zugangsschlüssel (QR-Code)

format query  Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.

Antwort 200 application/json
{
  "qrFieldsData": {
    "latitude": "48.8566",
    "longitude": "2.3522"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }

App Store

Installieren Sie Apps aus dem App Store direkt durch Scannen der jeweiligen QR-Codes.

Post /api/v2/qr/store/create

Generieren Sie einen intelligenten QR-Code, der je nach Gerät des Nutzers zum App Store oder Google Play weiterleitet.

Anfragekörper application/json
{
  "qrFieldsData": {
    "iosLink": "https://apps.apple.com/app/...",
    "androidLink": "https://play.google.com/store/apps/..."
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Put /api/v2/qr/store/update/{entryUID}

Ändern von Daten- und Stylingparametern des QR-Codes.

Parameter

entryUIDpath  ID oder eindeutiger Zugangsschlüssel (QR-Code)

Anfragekörper application/json
{
  "qrFieldsData": {
    "iosLink": "https://apps.apple.com/app/...",
    "androidLink": "https://play.google.com/store/apps/..."
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Get /api/v2/qr/store/{entryUID}

Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.

Parameter

entryUID path  ID oder eindeutiger Zugangsschlüssel (QR-Code)

format query  Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.

Antwort 200 application/json
{
  "qrFieldsData": {
    "iosLink": "https://apps.apple.com/app/...",
    "androidLink": "https://play.google.com/store/apps/..."
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }

VCard

Teilen Sie Kontaktinformationen nahtlos mithilfe von QR-Codes im VCard-Format.

Post /api/v2/qr/vcard/create

Erstellen Sie einen digitalen Visitenkarten-QR-Code. Nutzer können Ihre Kontaktdaten direkt auf ihrem Smartphone speichern.

Anfragekörper application/json
{
  "qrFieldsData": {
    "name": "John",
    "lastName": "Doe",
    "organization": "Acme Corp",
    "position": "CEO",
    "phones": [{ "phone": "+1234567890", "type": "mobile" }],
    "emails": [{ "email": "john@example.com" }],
    "websites": [{ "url": "https://example.com" }]
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Put /api/v2/qr/vcard/update/{entryUID}

Ändern von Daten- und Stylingparametern des QR-Codes.

Parameter

entryUIDpath  ID oder eindeutiger Zugangsschlüssel (QR-Code)

Anfragekörper application/json
{
  "qrFieldsData": {
    "name": "John",
    "lastName": "Doe",
    "organization": "Acme Corp",
    "position": "CEO",
    "phones": [{ "phone": "+1234567890", "type": "mobile" }],
    "emails": [{ "email": "john@example.com" }],
    "websites": [{ "url": "https://example.com" }]
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Get /api/v2/qr/vcard/{entryUID}

Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.

Parameter

entryUID path  ID oder eindeutiger Zugangsschlüssel (QR-Code)

format query  Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.

Antwort 200 application/json
{
  "qrFieldsData": {
    "name": "John",
    "lastName": "Doe",
    "organization": "Acme Corp",
    "position": "CEO",
    "phones": [{ "phone": "+1234567890", "type": "mobile" }],
    "emails": [{ "email": "john@example.com" }],
    "websites": [{ "url": "https://example.com" }]
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }

Image

Bilder können direkt auf Mobilgeräten mithilfe von QR-Codes, in die die Bilder eingebettet sind, angezeigt werden.

Post /api/v2/qr/gallery/create

Generieren Sie einen QR-Code, der eine Bildergalerie öffnet. Laden Sie 1–20 Bilder als Base64-kodierte Dateien hoch oder geben Sie URLs an.

Anfragekörper application/json
{
  "qrFieldsData": {
    "images": [
      {
        "file": "https://example.com/photo.jpg",
        "fileName": "photo.jpg"
      }
    ]
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Put /api/v2/qr/gallery/update/{entryUID}

Ändern von Daten- und Stylingparametern des QR-Codes.

Parameter

entryUIDpath  ID oder eindeutiger Zugangsschlüssel (QR-Code)

Anfragekörper application/json
{
  "qrFieldsData": {
    "images": [
      {
        "file": "https://example.com/photo.jpg",
        "fileName": "photo.jpg"
      }
    ]
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Get /api/v2/qr/gallery/{entryUID}

Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.

Parameter

entryUID path  ID oder eindeutiger Zugangsschlüssel (QR-Code)

format query  Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.

Antwort 200 application/json
{
  "qrFieldsData": {
    "images": [
      {
        "file": "https://example.com/photo.jpg",
        "fileName": "photo.jpg"
      }
    ]
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }

File

Teilen Sie Dateien in beliebigen Formaten, indem Sie einen Download-Link in einen QR-Code einbetten, um sofortigen mobilen Zugriff zu ermöglichen.

Post /api/v2/qr/file/create

Generieren Sie einen QR-Code, der zu einer herunterladbaren Datei verlinkt. Geben Sie ihn als Base64-kodierte Datei oder als direkte URL an.

Anfragekörper application/json
{
  "qrFieldsData": {
    "file": "https://example.com/document.pdf",
    "fileName": "document.pdf"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Put /api/v2/qr/file/update/{entryUID}

Ändern von Daten- und Stylingparametern des QR-Codes.

Parameter

entryUIDpath  ID oder eindeutiger Zugangsschlüssel (QR-Code)

Anfragekörper application/json
{
  "qrFieldsData": {
    "file": "https://example.com/document.pdf",
    "fileName": "document.pdf"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Get /api/v2/qr/file/{entryUID}

Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.

Parameter

entryUID path  ID oder eindeutiger Zugangsschlüssel (QR-Code)

format query  Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.

Antwort 200 application/json
{
  "qrFieldsData": {
    "file": "https://example.com/document.pdf",
    "fileName": "document.pdf"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }

PDF

Betten Sie PDF-Dokumente in QR-Codes ein, um den Zugriff auf Mobilgeräten zu vereinfachen.

Post /api/v2/qr/pdf/create

Erstellen Sie einen QR-Code, der beim Scannen ein PDF-Dokument im Browser öffnet.

Anfragekörper application/json
{
  "qrFieldsData": {
    "file": "https://example.com/document.pdf",
    "fileName": "document.pdf"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Put /api/v2/qr/pdf/update/{entryUID}

Ändern von Daten- und Stylingparametern des QR-Codes.

Parameter

entryUIDpath  ID oder eindeutiger Zugangsschlüssel (QR-Code)

Anfragekörper application/json
{
  "qrFieldsData": {
    "file": "https://example.com/document.pdf",
    "fileName": "document.pdf"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Get /api/v2/qr/pdf/{entryUID}

Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.

Parameter

entryUID path  ID oder eindeutiger Zugangsschlüssel (QR-Code)

format query  Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.

Antwort 200 application/json
{
  "qrFieldsData": {
    "file": "https://example.com/document.pdf",
    "fileName": "document.pdf"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }

Audio

Genießen Sie die Audiowiedergabe auf Mobilgeräten mithilfe von QR-Codes, in die Audiodateien eingebettet sind.

Post /api/v2/qr/audio/create

Generieren Sie einen QR-Code, der eine Audiodatei abspielt – perfekt für Musik, Podcasts oder Sprachnachrichten.

Anfragekörper application/json
{
  "qrFieldsData": {
    "file": "https://example.com/audio.mp3",
    "fileName": "audio.mp3"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Put /api/v2/qr/audio/update/{entryUID}

Ändern von Daten- und Stylingparametern des QR-Codes.

Parameter

entryUIDpath  ID oder eindeutiger Zugangsschlüssel (QR-Code)

Anfragekörper application/json
{
  "qrFieldsData": {
    "file": "https://example.com/audio.mp3",
    "fileName": "audio.mp3"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Get /api/v2/qr/audio/{entryUID}

Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.

Parameter

entryUID path  ID oder eindeutiger Zugangsschlüssel (QR-Code)

format query  Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.

Antwort 200 application/json
{
  "qrFieldsData": {
    "file": "https://example.com/audio.mp3",
    "fileName": "audio.mp3"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }

PPTX

Präsentieren Sie PowerPoint-Präsentationen mühelos mit QR-Code-Einbettung.

Post /api/v2/qr/pptx/create

Erstellen Sie einen QR-Code, der beim Scannen eine PowerPoint-Präsentation öffnet oder herunterlädt.

Anfragekörper application/json
{
  "qrFieldsData": {
    "file": "https://example.com/presentation.pptx",
    "fileName": "presentation.pptx"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Put /api/v2/qr/pptx/update/{entryUID}

Ändern von Daten- und Stylingparametern des QR-Codes.

Parameter

entryUIDpath  ID oder eindeutiger Zugangsschlüssel (QR-Code)

Anfragekörper application/json
{
  "qrFieldsData": {
    "file": "https://example.com/presentation.pptx",
    "fileName": "presentation.pptx"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Get /api/v2/qr/pptx/{entryUID}

Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.

Parameter

entryUID path  ID oder eindeutiger Zugangsschlüssel (QR-Code)

format query  Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.

Antwort 200 application/json
{
  "qrFieldsData": {
    "file": "https://example.com/presentation.pptx",
    "fileName": "presentation.pptx"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }

PCR

Teilen und überprüfen Sie PCR-Testergebnisse bequem mit dem Covid-Test-QR-Code.

Post /api/v2/qr/pcr/create

Generieren Sie einen QR-Code für ein Gesundheits- oder Konformitätszertifikat mit Passwortschutz und Ablaufdatum.

Anfragekörper application/json
{
  "qrFieldsData": {
    "file": "https://example.com/certificate.pdf",
    "fileName": "certificate.pdf",
    "expireDate": "2025-12-31",
    "password": "secret"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Put /api/v2/qr/pcr/update/{entryUID}

Ändern von Daten- und Stylingparametern des QR-Codes.

Parameter

entryUIDpath  ID oder eindeutiger Zugangsschlüssel (QR-Code)

Anfragekörper application/json
{
  "qrFieldsData": {
    "file": "https://example.com/certificate.pdf",
    "fileName": "certificate.pdf",
    "expireDate": "2025-12-31",
    "password": "secret"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }
Get /api/v2/qr/pcr/{entryUID}

Daten und Anpassungseinstellungen oder das Bild des generierten QR-Codes selbst anzeigen.

Parameter

entryUID path  ID oder eindeutiger Zugangsschlüssel (QR-Code)

format query  Bildformat. Verfügbare Werte: png, svg, jpg, jpeg, json. Standardwert: null.

Antwort 200 application/json
{
  "qrFieldsData": {
    "file": "https://example.com/certificate.pdf",
    "fileName": "certificate.pdf",
    "expireDate": "2025-12-31",
    "password": "secret"
  },
  "title": "Qr Code",
                        "format": "png",
                        "designType": "base",
                        "qrFolderOptions": {
                        "folderName": null,
                        "subfolderName": null
                        },
                        "qrOptions": {
                        "size": 300,
                        "errorCorrectionLevel": "Q",
                        "pattern": "square",
                        "patternColor": "#000000",
                        "patternBackground": "#ffffff",
                        "cornetsOuter": "square",
                        "cornetsOuterColor": "#000000",
                        "cornetsInterior": "square",
                        "cornetsInteriorColor": "#000000",
                        "logotype": null,
                        "logotypeSize": 0.3,
                        "logotypeMargin": 0,
                        "logotypeHideBackground": true,
                        "gradientPattern": null,
                        "gradientCornetsOuter": null,
                        "gradientCornetsInterior": null,
                        "gradientBackground": null
                        },
                        "qrFrame": {
                        "name": "noFrame",
                        "color": "#000000",
                        "backgroundColor": "#ffffff",
                        "text": "",
                        "textSize": null,
                        "textColor": "#9C3AAF",
                        "textFont": "Roboto"
                        }
                        }

Die Online-QR-Code-Generator-API bietet eine Vielzahl von QR-API-Typen für unterschiedlichste Anforderungen. Sie ermöglicht unter anderem die Weiterleitung von Nutzern zu Websites, das Teilen von Kontaktinformationen, den Zugriff auf bestimmte Standorte und die Interaktion mit Social-Media-Profilen.

Optimieren Sie Ihre Routine mit der Me-QR-API.

Mit unserem API-QR-Code-Generator erreichen Sie eine völlig neue Dimension der QR-Code-Erstellung. Dieses bahnbrechende Tool vereinfacht und optimiert die QR-Code-Generierung. Diese exklusive Funktion, die nur in unserem Premium-Tarif verfügbar ist, ermöglicht Entwicklern und Unternehmen die nahtlose Integration der QR-Code-Erstellung in ihre Anwendungen und Arbeitsabläufe und steigert so Effizienz und Produktivität.

Die ME-QR API lässt sich nahtlos in Ihre bestehenden Systeme integrieren und ermöglicht die automatisierte QR-Code-Generierung sowie das einfache Einbetten von QR-Codes in Ihre Anwendungen, Websites und Workflows. Dadurch entfällt die manuelle QR-Code-Erstellung, was Ihnen wertvolle Zeit und Mühe spart und gleichzeitig ein einheitliches Branding und konsistente Funktionalität auf allen Plattformen gewährleistet.

Dank der plattformübergreifenden Kompatibilität der ME-QR API, die Android, iOS und Windows umfasst, können Sie QR-Codes von überall aus erstellen und nahtlos in Ihre digitalen Assets integrieren.

Nutzen Sie die Leistungsfähigkeit der QR-Code-Web-API und optimieren Sie Ihre QR-Code-Erstellung. Erleben Sie die unübertroffene Effizienz und Produktivität unseres Premium-Tarifs. Abonnieren Sie noch heute und automatisieren Sie Ihre QR-Code-Generierung!

Häufig gestellte Fragen