AI QR codes
GET https://doxane.fr/api/ai-qr-codes/
curl --request GET \
--url 'https://doxane.fr/api/ai-qr-codes/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://doxane.fr/api/ai-qr-codes/' \
--header 'Authorization: Bearer {api_key}' \
| Paramètres | Détails | Description |
|---|---|---|
| page | Optionnel Entier | Le numéro de page dont vous souhaitez obtenir les résultats. Par défaut, c'est 1. |
| results_per_page | Optionnel Entier | Combien de résultats souhaitez-vous par page ? Les valeurs autorisées sont : 10 , 25 , 50 , 100 , 250 , 500 , 1000. Par défaut, c'est 25. |
{
"data": [
{
"id": 1,
"name": "Example name",
"ai_qr_code": "https://doxane.fr/uploads/ai_qr_codes/example.png",
"content": "https://doxane.fr/",
"prompt": "Nature scenery at sunset, waterfall, wild animals and sunshine rays"
"embedded_data": "https://doxane.fr/",
"embedded_data": "https://example.com",
"last_datetime": null,
"datetime": "2025-12-04 21:29:02"
},
],
"meta": {
"page": 1,
"results_per_page": 25,
"total": 1,
"total_pages": 1
},
"links": {
"first": "https://doxane.fr/api/ai-qr-codes?&page=1",
"last": "https://doxane.fr/api/ai-qr-codes?&page=1",
"next": null,
"prev": null,
"self": "https://doxane.fr/api/ai-qr-codes?&page=1"
}
}
GET https://doxane.fr/api/ai-qr-codes/{ai_qr_code_id}
curl --request GET \
--url 'https://doxane.fr/api/ai-qr-codes/{ai_qr_code_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://doxane.fr/api/ai-qr-codes/{ai_qr_code_id}' \
--header 'Authorization: Bearer {api_key}' \
{
"data": {
"id": 1,
"name": "Example name",
"ai_qr_code": "https://doxane.fr/uploads/ai_qr_codes/example.png",
"content": "https://doxane.fr/",
"prompt": "Nature scenery at sunset, waterfall, wild animals and sunshine rays"
"embedded_data": "https://doxane.fr/",
"last_datetime": null,
"datetime": "2025-12-04 21:29:02"
}
}
POST https://doxane.fr/api/ai-qr-codes
| Paramètres | Détails | Description |
|---|---|---|
| link_id | Optionnel Entier | - |
| project_id | Optionnel Entier | - |
| name | Requis Chaîne | - |
| content | Requis Chaîne | - |
| prompt | Requis Chaîne | - |
| Paramètres | Détails | Description |
|---|---|---|
curl --request POST \
--url 'https://doxane.fr/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://doxane.fr/' \
--url 'https://doxane.fr/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://doxane.fr/' \
{
"data": {
"id": 1
}
}
POST https://doxane.fr/api/ai-qr-codes/{ai_qr_code_id}
| Paramètres | Détails | Description |
|---|---|---|
| link_id | Optionnel Entier | - |
| project_id | Optionnel Chaîne | - |
| name | Optionnel Chaîne | - |
| content | Optionnel Chaîne | - |
| prompt | Optionnel Chaîne | - |
curl --request POST \
--url 'https://doxane.fr/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://doxane.fr/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://doxane.fr/api/ai-qr-codes/{ai_qr_code_id}
curl --request DELETE \
--url 'https://doxane.fr/api/ai-qr-codes/{ai_qr_code_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://doxane.fr/api/ai-qr-codes/{ai_qr_code_id}' \
--header 'Authorization: Bearer {api_key}' \