Codici QR AI
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}' \
| Parametri | Dettagli | Descrizione |
|---|---|---|
| page | Opzionale Integro | Il numero di pagina da cui vuoi i risultati. Il valore predefinito è 1. |
| results_per_page | Opzionale Integro | Quanti risultati vuoi per pagina. I valori consentiti sono: 10 , 25 , 50 , 100 , 250 , 500 , 1000. Il valore predefinito è 25. |
{
"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": "Paesaggio naturale al tramonto, cascata, animali selvatici e raggi di sole"
"embedded_data": "https://qr.gtechgroup.it/",
"embedded_data": "https://example.com",
"last_datetime": null,
"datetime": "2026-02-04 01:43:55",
},
],
"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": "Paesaggio naturale al tramonto, cascata, animali selvatici e raggi di sole"
"embedded_data": "https://qr.gtechgroup.it/",
"last_datetime": null,
"datetime": "2026-02-04 01:43:55",
}
}
POST https://qr.gtechgroup.it/api/ai-qr-codes
| Parametri | Dettagli | Descrizione |
|---|---|---|
| link_id | Opzionale Integro | - |
| project_id | Opzionale Integro | - |
| name | Richiesto Stringa | - |
| content | Richiesto Stringa | - |
| prompt | Richiesto Stringa | - |
| Parametri | Dettagli | Descrizione |
|---|---|---|
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=Paesaggio naturale al tramonto, cascata, animali selvatici e raggi di sole' \
--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=Paesaggio naturale al tramonto, cascata, animali selvatici e raggi di sole' \
--form 'content=https://qr.gtechgroup.it/' \
{
"data": {
"id": 1
}
}
POST https://qr.gtechgroup.it/api/ai-qr-codes/{ai_qr_code_id}
| Parametri | Dettagli | Descrizione |
|---|---|---|
| link_id | Opzionale Integro | - |
| project_id | Opzionale Stringa | - |
| name | Opzionale Stringa | - |
| content | Opzionale Stringa | - |
| prompt | Opzionale Stringa | - |
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}' \