ME-QR / קוד QR של API
רוצים ליצור קודי QR בקנה מידה גדול? שלבו את ממשק ה-API שלנו ליצירת קודי QR בעסק שלכם והפוך תהליכים לאוטומטיים. כל סוגי קודי ה-QR זמינים עבורכם עם ממשק ה-API של Me-QR.
צור את קוד ה-QR הראשון שלך תוך שניות בעזרת בקשת API אחת.
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);
השתמש במפתח API כדי לאמת את הבקשות שלך.
מצא את זה בלוח המחוונים שלך:
הוסף את מפתח ה-API שלך לכותרת הבקשה:
Authorization: Bearer YOUR_API_KEY
כל מה שצריך לדעת על שימוש, מגבלות וגישה ב-API.
כולל עד 10,000 קודי QR לחודש.
$0.005 / בקשה
עד 100 אלף בקשות
$0.0025 / בקשה
100k+ requests
חינם
3 מפתחות API · תקף ל-3 ימים
פּרֶמיָה
מפתחות API ללא הגבלה · ללא תוקף
מגבלות API: ~בקשה אחת/שנייה · 50 בקשות/דקה (זהה עבור כל התוכניות)
צור קשר עם התמיכה כדי לאפשר שימוש נוסף.
הגדירו את התוכן, המראה והפלט של קודי ה-QR שלכם באמצעות הפרמטרים הזמינים.
| פָּרָמֶטֶר | סוּג | בְּרִירַת מֶחדָל | תֵאוּר |
|---|---|---|---|
| tokenדָרוּשׁ | string | — | אסימון גישה לפונקציונליות API |
| qrType | integer | 1 | QR type: 1=Link, 4=PDF, 5=Email, 7=VCard… |
| qrFieldsData | object | [] | QR code content depending on the type (e.g. {"link": "https://…"}) |
| title | string | "Qr Code" | כותרת קוד ה-QR המוצגת בלוח המחוונים |
| format | string | "png" | פורמט פלט: png, svg, jpg, jpeg, json |
| designType | string | "base" | סוג עיצוב QR: בסיס או אמנות |
| qrFolderOptions | object | null | Folder placement: {"folderName": "…", "subfolderName": "…"} |
| entryId | integer | null | מזהה של QR קיים לעדכון במקום יצירת חדש |
הגדירו את התוכן, המראה והפלט של קודי ה-QR שלכם באמצעות הפרמטרים הזמינים.
| פָּרָמֶטֶר | סוּג | בְּרִירַת מֶחדָל | תֵאוּר |
|---|---|---|---|
| qrOptions | |||
| size | integer | 300 | גודל תמונת ה-QR המוחזרת בפיקסלים |
| errorCorrectionLevel | string | "Q" | תיקון שגיאות: L, M, Q, H |
| pattern | string | "square" | סגנון נקודות: מרובע, נקודות, מעוגל, קלאסי, מעוין, ניצוץ... |
| patternColor | string | "#000000" | צבע נקודות QR |
| patternBackground | string | "#ffffff" | צבע הרקע של קוד ה-QR |
| cornetsOuter | string | "square" | סגנון פינה חיצונית: מרובע, נקודות, קלאסי, גלגל שיניים, מעוגל במיוחד... |
| cornetsOuterColor | string | "#000000" | צבע הפינות החיצוניות |
| cornetsInterior | string | "square" | סגנון פינה פנימית: מרובע, נקודה, קלאסי, מעוין, כוכב... |
| cornetsInteriorColor | string | "#000000" | צבע הפינות הפנימיות |
| logotype | string | null | לוגו מרכזי: enum מוגדר מראש, כתובת URL או תמונת base64 |
| logotypeSize | number | 0.3 | מקדם גודל לוגו 0–1 (מומלץ מקסימום 0.5) |
| logotypeMargin | number | 0 | שולי לוגו בפיקסלים |
| logotypeHideBackground | boolean | true | הסתר נקודות מכוסות על ידי הלוגו |
| gradientPattern | object | null | גרדיאנט לנקודות: {type, rotation, colors[]} |
| gradientCornetsOuter | object | null | גרדיאנט לפינות חיצוניות |
| gradientCornetsInterior | object | null | גרדיאנט לפינות פנימיות |
| gradientBackground | object | null | גרדיאנט לרקע |
| qrFrame | |||
| name | string | "noFrame" | עיצוב מסגרת (200+ אפשרויות או ללא מסגרת) |
| color | string | "#000000" | צבע המסגרת |
| backgroundColor | string | "#ffffff" | צבע רקע המסגרת |
| text | string | "" | טקסט תווית מסגרת (מקסימום 20 תווים) |
| textSize | integer | null | גודל גופן בפיקסלים (1–50) |
| textColor | string | "#9C3AAF" | צבע טקסט המסגרת |
| textFont | string | "Roboto" | גופן: Arial, Roboto, Georgia, Verdana… |
גלה בקשות API לדוגמה וקודי ה-QR שהן מייצרות.
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"
}'
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"
}
}'
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 של API הוא כלי רב עוצמה שנועד ליצירת קודי QR באצווה ושילוב חלק בתהליכים עסקיים, המאפשר אוטומציה באמצעות טכנולוגיית QR. API זה מוכיח את עצמו כגורם מרכזי בייעול פעולות, שיפור היעילות ומספק פתרון חזק לעסקים המעוניינים לשלב קודי QR בתהליכי העבודה שלהם.
דוגמה בולטת לפונקציונליות של ה-API מוצגת דרך נקודת הקצה /api/qr/create/, המאפשרת לך ליצור קודי QR באופן תכנותי:
מאפשר לך ליצור קוד QR באמצעות אחד מהסוגים הזמינים ב-me-qr. כל בקשה תיצור קוד QR חדש.
אין פרמטרים
{
"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"
}
}
| קוד | תֵאוּר | קישורים |
|---|---|---|
| default | — | אין קישורים |
ממשק ה-API של Me-QR Generator מציע שליטה מקיפה על יצירת קודי QR, ומספק לכם מגוון תכונות להתאמת קודי QR לצרכים הספציפיים שלכם:
אחזור רשימה של מדינות נתמכות עבור API של קוד QR מותאם אישית
אחזור רשימת המדינות הזמינות.
| שֵׁם | תֵאוּר |
|---|---|
|
country
string
(query)
|
חיפוש לפי שם מדינה. |
| קוד | תֵאוּר | קישורים |
|---|---|---|
| 200 | תגובה מוצלחת application/json
[
{
"id": 0,
"name": "string"
}
]
|
אין קישורים |
נקודת קצה זו מאפשרת לך לאחזר רשימה של מדינות זמינות, מה שמקל על לוקליזציה והתאמה אישית בהתבסס על העדפות גיאוגרפיות.
גש לרשימת ערים נתמכות כדי לכוונן את פרטי קוד ה-QR.
אחזור רשימת הערים הזמינות.
| שֵׁם | תֵאוּר |
|---|---|
|
country
string
(query)
|
חיפוש לפי שם מדינה. |
| קוד | תֵאוּר | קישורים |
|---|---|---|
| 200 | תגובה מוצלחת application/json
[
{
"id": 0,
"name": "string"
}
]
|
אין קישורים |
ניתן להשתמש בתכונה זו כדי לבחור ערים ספציפיות, ובכך לשפר את הרלוונטיות של קודי QR עבור קמפיינים ספציפיים למיקום או הפצת מידע.
קבל רשימה של אזורי זמן נתמכים כדי לשלב מידע רגיש לזמן בקודי QR.
אחזור רשימת אזורי הזמן הזמינים.
| שֵׁם | תֵאוּר |
|---|---|
|
timezone
string
(query)
|
חיפוש לפי שם אזור זמן. |
| קוד | תֵאוּר | קישורים |
|---|---|---|
| 200 | תגובה מוצלחת application/json
[
{
"id": 0,
"name": "string"
}
]
|
אין קישורים |
פונקציונליות זו מאפשרת לך ליישר קודי QR עם נתונים ספציפיים לזמן, תוך הבטחת רלוונטיות ועיתוי.
גש לרשימת שפות נתמכות להתאמה אישית של טקסט ותוכן של קוד QR.
אחזור רשימת השפות הזמינות.
| שֵׁם | תֵאוּר |
|---|---|
|
language
string
(query)
|
חיפוש לפי שם שפה. |
| קוד | תֵאוּר | קישורים |
|---|---|---|
| 200 | תגובה מוצלחת application/json
[
{
"id": 0,
"name": "string"
}
]
|
אין קישורים |
ניתן להשתמש בתכונה זו כדי להתאים את עצמה להעדפות שפה מגוונות, מה שהופך את קודי ה-QR לנגישים וידידותיים יותר למשתמש בהקשרים רב-לשוניים.
הגמישות שמספקות תכונות אלו מאפשרת לך ליצור API דינמי של קוד QR המותאם לאזורים, ערים, אזורי זמן ושפות ספציפיים, ובכך לשפר את האפקטיביות של אסטרטגיות התקשורת והאינטראקציה מבוססות QR שלך.
ממשק ה-API שלנו ליצירת קודי QR מציע מגוון רחב של סוגים ליצירת קודי QR, המתאימים לצרכים ופונקציונליות שונים. בואו נחקור כמה מהסוגים הללו בפירוט.
ממשק API חינמי לקוד QR מוכיח את עצמו כיקר ערך בתחום התשלומים בזכות אופיו החלק והיעיל. הוא מפשט עסקאות, משפר את האבטחה ומזרז את התשלום החודשי באמצעות קוד QR. הנה דוגמה פשוטה לקוד המדגימה את השימוש בו:
ממשק API חינמי של קוד QR מוכיח את עצמו כיקר ערך בתחום התשלומים בכך שהוא מאפשר לעסקים וליחידים לייעל עסקאות. על ידי הטמעת כתובת URL לתשלום בקוד QR, לקוחות יכולים לסרוק את הקוד במהירות באמצעות הסמארטפונים שלהם ולהשלים עסקאות בצורה חלקה.
{
"qrFieldsData": {
"link"*: "https://example.com/pay"
}
}
| שָׂדֶה | סוּג | דָרוּשׁ | תֵאוּר |
|---|---|---|---|
| link | string($hostname) | required | כתובת דף התשלום |
צור API של קוד QR וחולל מהפכה בתהליכי התשלום שלך איתנו, תוך הפיכת עסקאות לחוויות חלקות ויעילות.
צור API של קוד QR וחולל מהפכה בתהליכי התשלום שלך איתנו. שלב בצורה חלקה עסקאות מאובטחות ויעילות ביישומים שלך.
דוגמה אחת ל-API לתשלום באמצעות קוד QR היא קוד QR של PayPal. שילוב ה-API של PayPal, הידוע כמוביל בתשלומים מקוונים, מייעל עסקאות בצורה מאובטחת. הנה דוגמה בסיסית של יישומו:
ממשק ה-API של קוד ה-QR של PayPal מאפשר שילוב חלק של קישורי תשלום של PayPal לתוך קודי QR. משתמשים יכולים לסרוק את קוד ה-QR כדי להגיע באופן מיידי לדף תשלום של PayPal, מה שהופך עסקאות למהירות ונוחות הן לעסקים והן ללקוחות.
{
"qrFieldsData": {
"link"*: "https://paypal.me/username"
}
}
| שָׂדֶה | סוּג | דָרוּשׁ | תֵאוּר |
|---|---|---|---|
| link | string($hostname) | required | PayPal.me או כתובת אינטרנט לתשלום |
נצלו את ממשק ה-API של קוד ה-QR של PayPal כדי לפשט ולהאיץ את זרימת התשלום שלכם, ולהציע חוויית תשלום מודרנית למשתמשים שלכם.
שדרגו את חוויית התשלום המקוון שלכם בעזרת ממשק ה-API של קוד ה-QR של PayPal של Me-QR. שלבו בקלות עסקאות PayPal מאובטחות ויעילות באפליקציות שלכם.
ממשק API של מחולל קוד QR עם לוגו בולט בזכות הפופולריות שלו. תכונה זו מאפשרת למשתמשים להטמיע את הלוגו שלהם בעיצוב קוד ה-QR על ידי מתן קוד QR עם לוגו. זוהי בחירה מועדפת לזיהוי מותג והתאמה אישית:
ממשק ה-API של קוד ה-QR של לוגו מאפשר לך ליצור קודי QR המקשרים לכל כתובת URL - מושלם לדפי מותג, תיקי עבודות או דפי נחיתה. הטמע את כתובת היעד שלך וספק חוויה מלוטשת וניתנת לסריקה לקהל שלך.
{
"qrFieldsData": {
"link"*: "https://example.com"
}
}
| שָׂדֶה | סוּג | דָרוּשׁ | תֵאוּר |
|---|---|---|---|
| link | string($hostname) | required | כתובת אתר יעד |
השתמשו ב-Logo QR Code API כדי לקשר בקלות כל יעד, תוך שילוב של זיהוי מותג עם הנוחות של טכנולוגיית QR.
הטמעו את המותג שלכם בכל סריקה בעזרת API חינמי למחולל קודי QR. שפרו את זיהוי המותג והתאימו אישית קודי QR בקלות בעזרת לוגואים מוטמעים.
קוד ה-QR של API של WhatsApp מחזיק במעמד מכובד בקרב ממשקי ה-QR של מסנג'ר. מינוף API זה מאפשר אינטראקציה חלקה על ידי מתן אפשרות לגישה מהירה לוואטסאפ, מה שהופך אותו למובילה בתחום פונקציונליות ה-QR מבוססת המסנג'ר. הנה דוגמה:
ממשק ה-API של קוד ה-QR של WhatsApp מאפשר לך ליצור קודי QR שפותחים שיחת WhatsApp עם הודעה מלאה מראש. פשוט ספק מספר טלפון והודעה אופציונלית - אידיאלי לתמיכת לקוחות, קמפיינים שיווקיים ומעורבות מיידית.
{
"qrFieldsData": {
"phone"*: "+1234567890",
"message"*: "Hello!"
}
}
| שָׂדֶה | סוּג | דָרוּשׁ | תֵאוּר |
|---|---|---|---|
| phone | string | required | מספר הטלפון של הנמען בפורמט בינלאומי |
| message | string | required | טקסט הודעה מולא מראש |
שלבו את ממשק ה-API של קוד ה-QR של WhatsApp כדי לקדם שיחות ישירות ולהגביר את המעורבות בסריקה אחת.
התחברו לקהל שלכם בצורה חלקה באמצעות קוד QR של WhatsApp. אפשרו גישה מהירה לשיחות בסריקה אחת בלבד, ושפרו את חוויית ההודעות שלכם.
QR code API free מציע חבילה מקיפה של סוגי יוצרי API לקוד QR כדי לענות על צרכים מגוונים. גלו את סוגי ה-QR API הנתמכים יותר ודוגמאות קוד עבור כל אחד מהם:
צור קודי QR שמפנים משתמשים לכל כתובת URL.
צור קוד QR שמפנה לכל כתובת URL בעת הסריקה.
{
"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"
}
}
שינוי נתונים ופרמטרי עיצוב של קוד QR.
entryUIDpath מזהה או מפתח כניסה ייחודי (קוד QR)
{
"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"
}
}
צפה בנתונים ובהגדרות ההתאמה האישית או בתמונה עצמה של קוד ה-QR שנוצר.
entryUID path מזהה או מפתח כניסה ייחודי (קוד QR)
format query פורמט תמונה. ערכים זמינים: png, svg, jpg, jpeg, json. ברירת מחדל: null
{
"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"
}
}
התחברו לפרופילים באינסטגרם באמצעות קודי QR.
צור קוד QR המקשר ישירות לפרופיל או פוסט באינסטגרם.
{
"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"
}
}
שינוי נתונים ופרמטרי עיצוב של קוד QR.
entryUIDpath מזהה או מפתח כניסה ייחודי (קוד QR)
{
"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"
}
}
צפה בנתונים ובהגדרות ההתאמה האישית או בתמונה עצמה של קוד ה-QR שנוצר.
entryUID path מזהה או מפתח כניסה ייחודי (קוד QR)
format query פורמט תמונה. ערכים זמינים: png, svg, jpg, jpeg, json. ברירת מחדל: null
{
"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"
}
}
קישור לפרופילים או דפי פייסבוק באמצעות מחולל קוד QR של rest API.
צור קוד QR המקשר לדף, קבוצה או פרופיל בפייסבוק.
{
"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"
}
}
שינוי נתונים ופרמטרי עיצוב של קוד QR.
entryUIDpath מזהה או מפתח כניסה ייחודי (קוד QR)
{
"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"
}
}
צפה בנתונים ובהגדרות ההתאמה האישית או בתמונה עצמה של קוד ה-QR שנוצר.
entryUID path מזהה או מפתח כניסה ייחודי (קוד QR)
format query פורמט תמונה. ערכים זמינים: png, svg, jpg, jpeg, json. ברירת מחדל: null
{
"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"
}
}
גישה לפרופילים או ציוצים בטוויטר באמצעות קודי QR.
צור קוד QR שמפנה משתמשים לפרופיל או ציוץ בטוויטר/X.
{
"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"
}
}
שינוי נתונים ופרמטרי עיצוב של קוד QR.
entryUIDpath מזהה או מפתח כניסה ייחודי (קוד QR)
{
"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"
}
}
צפה בנתונים ובהגדרות ההתאמה האישית או בתמונה עצמה של קוד ה-QR שנוצר.
entryUID path מזהה או מפתח כניסה ייחודי (קוד QR)
format query פורמט תמונה. ערכים זמינים: png, svg, jpg, jpeg, json. ברירת מחדל: null
{
"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"
}
}
גלו פרופילים בטיקטוק באמצעות קודי QR.
צור קוד QR המקשר לפרופיל או סרטון בטיקטוק.
{
"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"
}
}
שינוי נתונים ופרמטרי עיצוב של קוד QR.
entryUIDpath מזהה או מפתח כניסה ייחודי (קוד QR)
{
"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"
}
}
צפה בנתונים ובהגדרות ההתאמה האישית או בתמונה עצמה של קוד ה-QR שנוצר.
entryUID path מזהה או מפתח כניסה ייחודי (קוד QR)
format query פורמט תמונה. ערכים זמינים: png, svg, jpg, jpeg, json. ברירת מחדל: null
{
"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"
}
}
התחברו לפרופילים דרך סנאפצ'ט QR.
צור קוד QR המקשר ישירות לפרופיל בסנאפצ'ט.
{
"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"
}
}
שינוי נתונים ופרמטרי עיצוב של קוד QR.
entryUIDpath מזהה או מפתח כניסה ייחודי (קוד QR)
{
"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"
}
}
צפה בנתונים ובהגדרות ההתאמה האישית או בתמונה עצמה של קוד ה-QR שנוצר.
entryUID path מזהה או מפתח כניסה ייחודי (קוד QR)
format query פורמט תמונה. ערכים זמינים: png, svg, jpg, jpeg, json. ברירת מחדל: null
{
"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"
}
}
צור קשר עם ערוצי או קבוצות טלגרם באמצעות קודי QR.
צור קוד QR המקשר לערוץ, בוט או איש קשר בטלגרם.
{
"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"
}
}
שינוי נתונים ופרמטרי עיצוב של קוד QR.
entryUIDpath מזהה או מפתח כניסה ייחודי (קוד QR)
{
"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"
}
}
צפה בנתונים ובהגדרות ההתאמה האישית או בתמונה עצמה של קוד ה-QR שנוצר.
entryUID path מזהה או מפתח כניסה ייחודי (קוד QR)
format query פורמט תמונה. ערכים זמינים: png, svg, jpg, jpeg, json. ברירת מחדל: null
{
"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"
}
}
גישה לשירים, אלבומים או אמנים ספציפיים בספוטיפיי באמצעות קודי QR.
צור קוד QR שפותח דף של שיר, אלבום או אמן בספוטיפיי.
{
"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"
}
}
שינוי נתונים ופרמטרי עיצוב של קוד QR.
entryUIDpath מזהה או מפתח כניסה ייחודי (קוד QR)
{
"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"
}
}
צפה בנתונים ובהגדרות ההתאמה האישית או בתמונה עצמה של קוד ה-QR שנוצר.
entryUID path מזהה או מפתח כניסה ייחודי (קוד QR)
format query פורמט תמונה. ערכים זמינים: png, svg, jpg, jpeg, json. ברירת מחדל: null
{
"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"
}
}
צפה בערוצי יוטיוב או בסרטונים באמצעות קודי QR.
צור קוד QR המקשר לערוץ או סרטון יוטיוב.
{
"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"
}
}
שינוי נתונים ופרמטרי עיצוב של קוד QR.
entryUIDpath מזהה או מפתח כניסה ייחודי (קוד QR)
{
"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"
}
}
צפה בנתונים ובהגדרות ההתאמה האישית או בתמונה עצמה של קוד ה-QR שנוצר.
entryUID path מזהה או מפתח כניסה ייחודי (קוד QR)
format query פורמט תמונה. ערכים זמינים: png, svg, jpg, jpeg, json. ברירת מחדל: null
{
"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"
}
}
תהנו מהפעלת וידאו במכשירים ניידים באמצעות קודי QR המוטמעים בסרטונים.
צור קוד QR שמקשר לכל משאב וידאו מקוון.
{
"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"
}
}
שינוי נתונים ופרמטרי עיצוב של קוד QR.
entryUIDpath מזהה או מפתח כניסה ייחודי (קוד QR)
{
"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"
}
}
צפה בנתונים ובהגדרות ההתאמה האישית או בתמונה עצמה של קוד ה-QR שנוצר.
entryUID path מזהה או מפתח כניסה ייחודי (קוד QR)
format query פורמט תמונה. ערכים זמינים: png, svg, jpg, jpeg, json. ברירת מחדל: null
{
"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 באמצעות קודי QR.
צור קוד QR המקשר לחנות או לרשימת מוצרים ב-Etsy.
{
"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"
}
}
שינוי נתונים ופרמטרי עיצוב של קוד QR.
entryUIDpath מזהה או מפתח כניסה ייחודי (קוד QR)
{
"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"
}
}
צפה בנתונים ובהגדרות ההתאמה האישית או בתמונה עצמה של קוד ה-QR שנוצר.
entryUID path מזהה או מפתח כניסה ייחודי (קוד QR)
format query פורמט תמונה. ערכים זמינים: png, svg, jpg, jpeg, json. ברירת מחדל: null
{
"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"
}
}
צור קודי QR עם צורות ועיצובים ייחודיים לשיפור המיתוג.
צור קוד QR המקשר לכל משאב אינטרנט עם עיצוב מותאם אישית.
{
"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"
}
}
שינוי נתונים ופרמטרי עיצוב של קוד QR.
entryUIDpath מזהה או מפתח כניסה ייחודי (קוד QR)
{
"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"
}
}
צפה בנתונים ובהגדרות ההתאמה האישית או בתמונה עצמה של קוד ה-QR שנוצר.
entryUID path מזהה או מפתח כניסה ייחודי (קוד QR)
format query פורמט תמונה. ערכים זמינים: png, svg, jpg, jpeg, json. ברירת מחדל: null
{
"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"
}
}
פתחו גיליונות אלקטרוניים ספציפיים של GoogleSheets ישירות באמצעות קודי QR.
צור קוד QR המקשר למסמך משותף של Google Sheets.
{
"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"
}
}
שינוי נתונים ופרמטרי עיצוב של קוד QR.
entryUIDpath מזהה או מפתח כניסה ייחודי (קוד QR)
{
"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"
}
}
צפה בנתונים ובהגדרות ההתאמה האישית או בתמונה עצמה של קוד ה-QR שנוצר.
entryUID path מזהה או מפתח כניסה ייחודי (קוד QR)
format query פורמט תמונה. ערכים זמינים: png, svg, jpg, jpeg, json. ברירת מחדל: null
{
"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"
}
}
גישה למסמכי GoogleDocs ספציפיים באמצעות קודי QR.
צור קוד QR שפותח מסמך משותף של גוגל דוקס.
{
"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"
}
}
שינוי נתונים ופרמטרי עיצוב של קוד QR.
entryUIDpath מזהה או מפתח כניסה ייחודי (קוד QR)
{
"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"
}
}
צפה בנתונים ובהגדרות ההתאמה האישית או בתמונה עצמה של קוד ה-QR שנוצר.
entryUID path מזהה או מפתח כניסה ייחודי (קוד QR)
format query פורמט תמונה. ערכים זמינים: png, svg, jpg, jpeg, json. ברירת מחדל: null
{
"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"
}
}
השתתף בסקרים או בחנים באמצעות קודי QR המובילים לטופסי גוגל ספציפיים.
צור קוד QR המקשר לסקר או לחידון של טופסי גוגל.
{
"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"
}
}
שינוי נתונים ופרמטרי עיצוב של קוד QR.
entryUIDpath מזהה או מפתח כניסה ייחודי (קוד QR)
{
"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"
}
}
צפה בנתונים ובהגדרות ההתאמה האישית או בתמונה עצמה של קוד ה-QR שנוצר.
entryUID path מזהה או מפתח כניסה ייחודי (קוד QR)
format query פורמט תמונה. ערכים זמינים: png, svg, jpg, jpeg, json. ברירת מחדל: null
{
"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 My Business באמצעות קודי QR.
צור קוד QR שיפנה לקוחות להשאיר ביקורת בגוגל על העסק שלך.
{
"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"
}
}
שינוי נתונים ופרמטרי עיצוב של קוד QR.
entryUIDpath מזהה או מפתח כניסה ייחודי (קוד QR)
{
"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"
}
}
צפה בנתונים ובהגדרות ההתאמה האישית או בתמונה עצמה של קוד ה-QR שנוצר.
entryUID path מזהה או מפתח כניסה ייחודי (קוד QR)
format query פורמט תמונה. ערכים זמינים: png, svg, jpg, jpeg, json. ברירת מחדל: null
{
"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"
}
}
קישור למסמכי Microsoft Office 365 באמצעות קודי QR.
צור קוד QR המקשר למסמך Microsoft Office 365 או למשאב SharePoint.
{
"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"
}
}
שינוי נתונים ופרמטרי עיצוב של קוד QR.
entryUIDpath מזהה או מפתח כניסה ייחודי (קוד QR)
{
"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"
}
}
צפה בנתונים ובהגדרות ההתאמה האישית או בתמונה עצמה של קוד ה-QR שנוצר.
entryUID path מזהה או מפתח כניסה ייחודי (קוד QR)
format query פורמט תמונה. ערכים זמינים: png, svg, jpg, jpeg, json. ברירת מחדל: null
{
"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"
}
}
הפעלת אימיילים בעת סריקת קודי QR, מה שמאפשר למשתמשים לחבר הודעות מבלי להקליד את הכתובת.
צור קוד QR שפותח תוכנת דוא"ל עם נמען, נושא וגוף הודעה שמולאו מראש.
{
"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"
}
}
שינוי נתונים ופרמטרי עיצוב של קוד QR.
entryUIDpath מזהה או מפתח כניסה ייחודי (קוד QR)
{
"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"
}
}
צפה בנתונים ובהגדרות ההתאמה האישית או בתמונה עצמה של קוד ה-QR שנוצר.
entryUID path מזהה או מפתח כניסה ייחודי (קוד QR)
format query פורמט תמונה. ערכים זמינים: png, svg, jpg, jpeg, json. ברירת מחדל: null
{
"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"
}
}
חייג מספרי טלפון ישירות באמצעות קודי QR המקשרים למספרי טלפון.
צור קוד QR שמחייג אוטומטית למספר טלפון בעת סריקה.
{
"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"
}
}
שינוי נתונים ופרמטרי עיצוב של קוד QR.
entryUIDpath מזהה או מפתח כניסה ייחודי (קוד QR)
{
"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"
}
}
צפה בנתונים ובהגדרות ההתאמה האישית או בתמונה עצמה של קוד ה-QR שנוצר.
entryUID path מזהה או מפתח כניסה ייחודי (קוד QR)
format query פורמט תמונה. ערכים זמינים: png, svg, jpg, jpeg, json. ברירת מחדל: null
{
"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"
}
}
צור קודי QR עבור רשתות Wi-Fi, כולל SSID, סיסמה וסוג אבטחה.
צור קוד QR שמחבר משתמשים לרשת WiFi באופן אוטומטי.
{
"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"
}
}
שינוי נתונים ופרמטרי עיצוב של קוד QR.
entryUIDpath מזהה או מפתח כניסה ייחודי (קוד QR)
{
"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"
}
}
צפה בנתונים ובהגדרות ההתאמה האישית או בתמונה עצמה של קוד ה-QR שנוצר.
entryUID path מזהה או מפתח כניסה ייחודי (קוד QR)
format query פורמט תמונה. ערכים זמינים: png, svg, jpg, jpeg, json. ברירת מחדל: null
{
"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"
}
}
שתף הודעות או מידע באמצעות קודי QR המכילים טקסט רגיל.
צור קוד QR המציג טקסט רגיל או תוכן HTML בעת הסריקה.
{
"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"
}
}
שינוי נתונים ופרמטרי עיצוב של קוד QR.
entryUIDpath מזהה או מפתח כניסה ייחודי (קוד QR)
{
"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"
}
}
צפה בנתונים ובהגדרות ההתאמה האישית או בתמונה עצמה של קוד ה-QR שנוצר.
entryUID path מזהה או מפתח כניסה ייחודי (קוד QR)
format query פורמט תמונה. ערכים זמינים: png, svg, jpg, jpeg, json. ברירת מחדל: null
{
"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"
}
}
גישה למיקומים ספציפיים, כגון כתובות, ציוני דרך או נקודות עניין, באמצעות API עבור קוד QR.
צור קוד QR שפותח מיקום ספציפי במפות גוגל.
{
"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"
}
}
שינוי נתונים ופרמטרי עיצוב של קוד QR.
entryUIDpath מזהה או מפתח כניסה ייחודי (קוד QR)
{
"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"
}
}
צפה בנתונים ובהגדרות ההתאמה האישית או בתמונה עצמה של קוד ה-QR שנוצר.
entryUID path מזהה או מפתח כניסה ייחודי (קוד QR)
format query פורמט תמונה. ערכים זמינים: png, svg, jpg, jpeg, json. ברירת מחדל: null
{
"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"
}
}
התקינו אפליקציות מחנות האפליקציות ישירות על ידי סריקת קודי ה-QR המתאימים להן.
צור קוד QR חכם שמפנה לחנות האפליקציות או לגוגל פליי בהתבסס על מכשיר המשתמש.
{
"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"
}
}
שינוי נתונים ופרמטרי עיצוב של קוד QR.
entryUIDpath מזהה או מפתח כניסה ייחודי (קוד QR)
{
"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"
}
}
צפה בנתונים ובהגדרות ההתאמה האישית או בתמונה עצמה של קוד ה-QR שנוצר.
entryUID path מזהה או מפתח כניסה ייחודי (קוד QR)
format query פורמט תמונה. ערכים זמינים: png, svg, jpg, jpeg, json. ברירת מחדל: null
{
"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"
}
}
שתף פרטי קשר בצורה חלקה באמצעות קודי QR בפורמט VCard.
צור כרטיס ביקור דיגיטלי עם קוד QR. משתמשים יכולים לשמור את פרטי הקשר שלך ישירות בטלפון שלהם.
{
"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"
}
}
שינוי נתונים ופרמטרי עיצוב של קוד QR.
entryUIDpath מזהה או מפתח כניסה ייחודי (קוד QR)
{
"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"
}
}
צפה בנתונים ובהגדרות ההתאמה האישית או בתמונה עצמה של קוד ה-QR שנוצר.
entryUID path מזהה או מפתח כניסה ייחודי (קוד QR)
format query פורמט תמונה. ערכים זמינים: png, svg, jpg, jpeg, json. ברירת מחדל: null
{
"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"
}
}
צפה בתמונות ישירות במכשירים ניידים באמצעות קודי QR המטמיעים תמונות.
צור קוד QR שפותח גלריית תמונות. העלה 1-20 תמונות כקובץ base64 או ספק כתובות URL.
{
"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"
}
}
שינוי נתונים ופרמטרי עיצוב של קוד QR.
entryUIDpath מזהה או מפתח כניסה ייחודי (קוד QR)
{
"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"
}
}
צפה בנתונים ובהגדרות ההתאמה האישית או בתמונה עצמה של קוד ה-QR שנוצר.
entryUID path מזהה או מפתח כניסה ייחודי (קוד QR)
format query פורמט תמונה. ערכים זמינים: png, svg, jpg, jpeg, json. ברירת מחדל: null
{
"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"
}
}
גישה למספר כתובות URL בסריקה אחת באמצעות קודי QR המקשרים לאתרים שונים.
צור קוד QR שפותח דף נחיתה ממותג עם קישורים מותאמים אישית מרובים וכפתורי מדיה חברתית.
{
"qrFieldsData": {
"title": "My Links",
"description": "All my important links",
"backgroundColor": "#2F6BFD",
"links": [{ "title": "My Website", "url": "https://example.com" }],
"socials": []
},
"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"
}
}
שינוי נתונים ופרמטרי עיצוב של קוד QR.
entryUIDpath מזהה או מפתח כניסה ייחודי (קוד QR)
{
"qrFieldsData": {
"title": "My Links",
"description": "All my important links",
"backgroundColor": "#2F6BFD",
"links": [{ "title": "My Website", "url": "https://example.com" }],
"socials": []
},
"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"
}
}
צפה בנתונים ובהגדרות ההתאמה האישית או בתמונה עצמה של קוד ה-QR שנוצר.
entryUID path מזהה או מפתח כניסה ייחודי (קוד QR)
format query פורמט תמונה. ערכים זמינים: png, svg, jpg, jpeg, json. ברירת מחדל: null
{
"qrFieldsData": {
"title": "My Links",
"description": "All my important links",
"backgroundColor": "#2F6BFD",
"links": [{ "title": "My Website", "url": "https://example.com" }],
"socials": []
},
"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"
}
}
שתף קבצים מכל פורמט על ידי הטמעת קישור הורדה בקוד QR לגישה מיידית בנייד.
צור קוד QR המקשר לקובץ להורדה. ספק כ-base64 או כתובת URL ישירה.
{
"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"
}
}
שינוי נתונים ופרמטרי עיצוב של קוד QR.
entryUIDpath מזהה או מפתח כניסה ייחודי (קוד QR)
{
"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"
}
}
צפה בנתונים ובהגדרות ההתאמה האישית או בתמונה עצמה של קוד ה-QR שנוצר.
entryUID path מזהה או מפתח כניסה ייחודי (קוד QR)
format query פורמט תמונה. ערכים זמינים: png, svg, jpg, jpeg, json. ברירת מחדל: null
{
"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 לתוך קודי QR לגישה נוחה במכשירים ניידים.
צור קוד QR שפותח מסמך PDF בדפדפן לאחר הסריקה.
{
"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"
}
}
שינוי נתונים ופרמטרי עיצוב של קוד QR.
entryUIDpath מזהה או מפתח כניסה ייחודי (קוד QR)
{
"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"
}
}
צפה בנתונים ובהגדרות ההתאמה האישית או בתמונה עצמה של קוד ה-QR שנוצר.
entryUID path מזהה או מפתח כניסה ייחודי (קוד QR)
format query פורמט תמונה. ערכים זמינים: png, svg, jpg, jpeg, json. ברירת מחדל: null
{
"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"
}
}
תיהנו מהשמעת אודיו במכשירים ניידים באמצעות קודי QR המטמיעים קבצי אודיו.
צור קוד QR שמנגן קובץ שמע - מושלם למוזיקה, פודקאסטים או הודעות קוליות.
{
"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"
}
}
שינוי נתונים ופרמטרי עיצוב של קוד QR.
entryUIDpath מזהה או מפתח כניסה ייחודי (קוד QR)
{
"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"
}
}
צפה בנתונים ובהגדרות ההתאמה האישית או בתמונה עצמה של קוד ה-QR שנוצר.
entryUID path מזהה או מפתח כניסה ייחודי (קוד QR)
format query פורמט תמונה. ערכים זמינים: png, svg, jpg, jpeg, json. ברירת מחדל: null
{
"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"
}
}
הציגו מצגות PowerPoint בקלות בעזרת הטמעת קוד QR.
צור קוד QR שפותח או מוריד מצגת PowerPoint לאחר סריקה.
{
"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"
}
}
שינוי נתונים ופרמטרי עיצוב של קוד QR.
entryUIDpath מזהה או מפתח כניסה ייחודי (קוד QR)
{
"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"
}
}
צפה בנתונים ובהגדרות ההתאמה האישית או בתמונה עצמה של קוד ה-QR שנוצר.
entryUID path מזהה או מפתח כניסה ייחודי (קוד QR)
format query פורמט תמונה. ערכים זמינים: png, svg, jpg, jpeg, json. ברירת מחדל: null
{
"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 בנוחות באמצעות קוד QR לבדיקת קורונה.
צור קוד QR עבור תעודת בריאות או תאימות עם הגנה בסיסמה ותאריך תפוגה.
{
"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"
}
}
שינוי נתונים ופרמטרי עיצוב של קוד QR.
entryUIDpath מזהה או מפתח כניסה ייחודי (קוד QR)
{
"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"
}
}
צפה בנתונים ובהגדרות ההתאמה האישית או בתמונה עצמה של קוד ה-QR שנוצר.
entryUID path מזהה או מפתח כניסה ייחודי (קוד QR)
format query פורמט תמונה. ערכים זמינים: png, svg, jpg, jpeg, json. ברירת מחדל: null
{
"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"
}
}
ממשק ה-API המקוון של מחולל קודי QR מספק מגוון רחב של סוגי API של QR כדי לענות על צרכים שונים. החל מהפניית משתמשים לאתרי אינטרנט, שיתוף פרטי קשר, גישה למיקומים ספציפיים, אינטראקציה עם פרופילים במדיה חברתית ועוד.
שדרגו את יצירת קוד ה-QR שלכם לרמה חדשה לגמרי בעזרת מחולל קודי ה-QR שלנו, כלי פורץ דרך שמפשט ומייעל את תהליכי יצירת קוד QR. תכונה בלעדית זו, הזמינה רק בתוכנית הפרימיום שלנו, מאפשרת למפתחים ולעסקים לשלב בצורה חלקה את יצירת קוד ה-QR ביישומים ובזרימות העבודה שלהם, ובכך לשפר את היעילות והפרודוקטיביות.
ממשק ה-API של ME-QR משתלב בקלות עם המערכות הקיימות שלכם, ומאפשר לכם להפוך את יצירת קודי QR לאוטומטית ולהטמיע בקלות קודי QR ביישומים, באתרי האינטרנט ובזרימות העבודה שלכם. זה מבטל את הצורך ביצירה ידנית של קוד QR, חוסך לכם זמן ומאמץ יקרים תוך הבטחת מיתוג ופונקציונליות עקביים בכל הפלטפורמות.
עם תאימות חוצת פלטפורמות של API ME-QR, הכוללת את אנדרואיד, iOS ו-Windows, תוכלו ליצור קודי QR מכל מקום ולשלב אותם בצורה חלקה בנכסים הדיגיטליים שלכם.
אימצו את העוצמה של ממשק ה-QR Code Web API ושדרגו את יכולות יצירת קודי ה-QR שלכם. חוו את היעילות והפרודוקטיביות שאין שני לה שמציעה תוכנית הפרימיום שלנו. הירשמו עוד היום והתחילו להפוך את משימות יצירת קודי ה-QR שלכם לאוטומטיות!
כדי להתחיל, עליך ליצור חשבון ב-Me-QR. לאחר ההרשמה, נווט ללוח המחוונים של החשבון שלך כדי ליצור את מפתח ה-API הייחודי שלך. השתמש במפתח זה בכותרת האישור של בקשות ה-HTTP שלך כדי לאמת את הקריאות שלך.
ה-API שלנו הוא פיצ'ר פרימיום שנועדו לשימוש מקצועי וביצועים גבוהים. כדי לגשת לנקודות הקצה של ה-API ולשלב אותן בתהליך העבודה שלך, עליך להירשם לאחת מתוכניות הפרימיום שלנו.
כן, כדי להבטיח יציבות עבור כל המשתמשים, אנו מיישמים הגבלת תעריפים. המגבלה הספציפית תלויה ברמת המנוי Premium שלך. רמות סטנדרטיות בדרך כלל מאפשרות עד 50 בקשות לדקה, בעוד שתוכניות Enterprise מציעות מגבלות גבוהות יותר.
בהחלט. ממשק ה-API תוכנן במיוחד לאוטומציה. ניתן לשלוח מספר בקשות באופן תכנותי כדי ליצור אלפי קודי QR ייחודיים עבור כרטיסים, מלאי או קמפיינים שיווקיים מותאמים אישית תוך דקות.
כן. כל קוד QR דינמי שנוצר דרך ה-API כולל אוטומטית מעקב אנליטי. ניתן לאחזר נתוני סריקה (מיקום, סוג מכשיר, זמן) דרך לוח המחוונים שלנו או באמצעות נקודות קצה ספציפיות של ה-API לניתוח נתונים.
אם תוקף המנוי שלך יפוג, מפתח ה-API שלך יושבת, ולא תוכל ליצור קודים חדשים. עם זאת, קודים דינמיים שנוצרו בעבר יישארו פעילים כל עוד הם עומדים בתנאי התוכנית הספציפית שלך.