AI QR codes
GET https://qr.gtechgroup.it/api/ai-qr-codes/
curl --request GET \
--url 'https://qr.gtechgroup.it/api/ai-qr-codes/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://qr.gtechgroup.it/api/ai-qr-codes/' \
--header 'Authorization: Bearer {api_key}' \
| Parameter | Einzelheiten | Beschreibung |
|---|---|---|
| page | Optional, aber vermeiden Sie es, Endpunkte zurückzugeben. Ganzzahl | Die Seitennummer, von der Sie Ergebnisse möchten. Standardmäßig ist 1 |
| results_per_page | Optional, aber vermeiden Sie es, Endpunkte zurückzugeben. Ganzzahl | Übersetzen Sie, aber vermeiden Sie abschließende Punkte: Wie viele Ergebnisse möchten Sie pro Seite haben. Erlaubte Werte sind: 10 , 25 , 50 , 100 , 250 , 500 , 1000. Standardmäßig ist 25 eingestellt. |
{
"data": [
{
"id": 1,
"name": "Example name",
"ai_qr_code": "https://qr.gtechgroup.it/uploads/ai_qr_codes/example.png",
"content": "https://qr.gtechgroup.it/",
"prompt": "Nature scenery at sunset, waterfall, wild animals and sunshine rays"
"embedded_data": "https://qr.gtechgroup.it/",
"embedded_data": "https://example.com",
"last_datetime": null,
"datetime": "2026-02-04 03:01:43",
},
],
"meta": {
"page": 1,
"results_per_page": 25,
"total": 1,
"total_pages": 1
},
"links": {
"first": "https://qr.gtechgroup.it/api/ai-qr-codes?page=1",
"last": "https://qr.gtechgroup.it/api/ai-qr-codes?page=1",
"next": null,
"prev": null,
"self": "https://qr.gtechgroup.it/api/ai-qr-codes?page=1"
}
}
GET https://qr.gtechgroup.it/api/ai-qr-codes/{ai_qr_code_id}
curl --request GET \
--url 'https://qr.gtechgroup.it/api/ai-qr-codes/{ai_qr_code_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://qr.gtechgroup.it/api/ai-qr-codes/{ai_qr_code_id}' \
--header 'Authorization: Bearer {api_key}' \
{
"data": {
"id": 1,
"name": "Example name",
"ai_qr_code": "https://qr.gtechgroup.it/uploads/ai_qr_codes/example.png",
"content": "https://qr.gtechgroup.it/",
"prompt": "Nature scenery at sunset, waterfall, wild animals and sunshine rays"
"embedded_data": "https://qr.gtechgroup.it/",
"last_datetime": null,
"datetime": "2026-02-04 03:01:43",
}
}
POST https://qr.gtechgroup.it/api/ai-qr-codes
| Parameter | Einzelheiten | Beschreibung |
|---|---|---|
| link_id | Optional, aber vermeiden Sie es, Endpunkte zurückzugeben. Ganzzahl | - |
| project_id | Optional, aber vermeiden Sie es, Endpunkte zurückzugeben. Ganzzahl | - |
| name | Erforderlich Übersetzen, aber vermeiden Sie abschließende Punkte: String | - |
| content | Erforderlich Übersetzen, aber vermeiden Sie abschließende Punkte: String | - |
| prompt | Erforderlich Übersetzen, aber vermeiden Sie abschließende Punkte: String | - |
| Parameter | Einzelheiten | Beschreibung |
|---|---|---|
curl --request POST \
--url 'https://qr.gtechgroup.it/api/ai-qr-codes' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=New York' \
--form 'prompt=Nature scenery at sunset, waterfall, wild animals and sunshine rays' \
--form 'content=https://qr.gtechgroup.it/' \
--url 'https://qr.gtechgroup.it/api/ai-qr-codes' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=New York' \
--form 'prompt=Nature scenery at sunset, waterfall, wild animals and sunshine rays' \
--form 'content=https://qr.gtechgroup.it/' \
{
"data": {
"id": 1
}
}
POST https://qr.gtechgroup.it/api/ai-qr-codes/{ai_qr_code_id}
| Parameter | Einzelheiten | Beschreibung |
|---|---|---|
| link_id | Optional, aber vermeiden Sie es, Endpunkte zurückzugeben. Ganzzahl | - |
| project_id | Optional, aber vermeiden Sie es, Endpunkte zurückzugeben. Übersetzen, aber vermeiden Sie abschließende Punkte: String | - |
| name | Optional, aber vermeiden Sie es, Endpunkte zurückzugeben. Übersetzen, aber vermeiden Sie abschließende Punkte: String | - |
| content | Optional, aber vermeiden Sie es, Endpunkte zurückzugeben. Übersetzen, aber vermeiden Sie abschließende Punkte: String | - |
| prompt | Optional, aber vermeiden Sie es, Endpunkte zurückzugeben. Übersetzen, aber vermeiden Sie abschließende Punkte: String | - |
curl --request POST \
--url 'https://qr.gtechgroup.it/api/ai-qr-codes/{ai_qr_code_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Las Vegas' \
--url 'https://qr.gtechgroup.it/api/ai-qr-codes/{ai_qr_code_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Las Vegas' \
{
"data": {
"id": 1
}
}
DELETE https://qr.gtechgroup.it/api/ai-qr-codes/{ai_qr_code_id}
curl --request DELETE \
--url 'https://qr.gtechgroup.it/api/ai-qr-codes/{ai_qr_code_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://qr.gtechgroup.it/api/ai-qr-codes/{ai_qr_code_id}' \
--header 'Authorization: Bearer {api_key}' \