AI QR-koder
Generer stiliserte AI QR-koder via Replicate.
GET/api/v1/ai-qr-codesList AI QR-kode
| Navn | Type | Påkrevd | Beskrivelse |
|---|---|---|---|
| page | integer | Nei | Page number (default 1) |
| results_per_page | integer | Nei | Items per page (default 25, max 100) |
| search | string | Nei | Search term |
| search_by | string | Nei | Column to search |
| order_by | string | Nei | Sort column |
| order_type | string | Nei | asc or desc |
| datetime_start | string | Nei | ISO datetime filter start |
| datetime_end | string | Nei | ISO datetime filter end |
curl -X GET 'https://forqrcode.com/api/v1/ai-qr-codes' \ -H 'Authorization: Bearer YOUR_API_KEY'
GET/api/v1/ai-qr-codes/{id}Les én AI QR-kode
| Navn | Type | Påkrevd | Beskrivelse |
|---|---|---|---|
| id | integer | Ja | — |
curl -X GET 'https://forqrcode.com/api/v1/ai-qr-codes/{id}' \
-H 'Authorization: Bearer YOUR_API_KEY'POST/api/v1/ai-qr-codesOpprett AI QR-kode
| Navn | Type | Påkrevd | Beskrivelse |
|---|---|---|---|
| name | string | Ja | — |
| content | string | Ja | — |
| prompt | string | Ja | — |
curl -X POST 'https://forqrcode.com/api/v1/ai-qr-codes' \ -H 'Authorization: Bearer YOUR_API_KEY'
PATCH/api/v1/ai-qr-codes/{id}Oppdater AI QR-kode
| Navn | Type | Påkrevd | Beskrivelse |
|---|---|---|---|
| id | integer | Ja | — |
curl -X PATCH 'https://forqrcode.com/api/v1/ai-qr-codes/{id}' \
-H 'Authorization: Bearer YOUR_API_KEY'DELETE/api/v1/ai-qr-codes/{id}Slett AI QR-kode
| Navn | Type | Påkrevd | Beskrivelse |
|---|---|---|---|
| id | integer | Ja | — |
curl -X DELETE 'https://forqrcode.com/api/v1/ai-qr-codes/{id}' \
-H 'Authorization: Bearer YOUR_API_KEY'Parameternavn og JSON-eksempler vises på engelsk. Erstatt YOUR_API_KEY med kontonøkkelen din.