Strichcodes
GET https://rqrcode.com/api/barcodes/
curl --request GET \
--url 'https://rqrcode.com/api/barcodes/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://rqrcode.com/api/barcodes/' \
--header 'Authorization: Bearer {api_key}' \
Parameter | Einzelheiten | Beschreibung |
---|---|---|
page | Optional (Optional) Ganzzahl | Die Seitenzahl, von der Sie Ergebnisse erhalten möchten. Standardmäßig ist sie 1 . |
results_per_page | Optional (Optional) Ganzzahl | Wie viele Ergebnisse möchten Sie pro Seite? Erlaubte Werte sind: 10 , 25 , 50 , 100 , 250 , 500 , 1000 . Standardmäßig ist es 25 . |
{ "data": [ { "id": 1, "type": "C32", "name": "Example name", "value": "123456", "barcode": "https://rqrcode.com/uploads/barcode/example.svg", "settings": { "foreground_color": "#000000", "width_scale": 2, "height": 50, }, "embedded_data": "123456", "last_datetime": null, "datetime": "2025-07-16 03:58:15" }, ], "meta": { "page": 1, "results_per_page": 25, "total": 1, "total_pages": 1 }, "links": { "first": "https://rqrcode.com/api/barcodes?&page=1", "last": "https://rqrcode.com/api/barcodes?&page=1", "next": null, "prev": null, "self": "https://rqrcode.com/api/barcodes?&page=1" } }
GET https://rqrcode.com/api/barcodes/{barcode_id}
curl --request GET \
--url 'https://rqrcode.com/api/barcodes/{barcode_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://rqrcode.com/api/barcodes/{barcode_id}' \
--header 'Authorization: Bearer {api_key}' \
{ "data": { "id": 1, "type": "C32", "name": "Example name", "value": "123456", "barcode": "https://rqrcode.com/uploads/barcode/example.svg", "settings": { "foreground_color": "#000000", "width_scale": 2, "height": 50, }, "embedded_data": "123456", "last_datetime": null, "datetime": "2025-07-16 03:58:15" } }
POST https://rqrcode.com/api/barcodes
Parameter | Einzelheiten | Beschreibung |
---|---|---|
project_id | Optional (Optional) Ganzzahl | - |
name | Erforderlich Zeichenkette | - |
type | Erforderlich Zeichenkette | Erlaubte Werte: C32 , C39 , C39+ , C39E , C39E+ , C93 , S25 , S25+ , I25 , I25+ , ITF14 , C128 , C128A , C128B , C128C , EAN2 , EAN5 , EAN8 , EAN13 , UPCA , UPCE , MSI , MSI+ , POSTNET , PLANET , TELEPENALPHA , TELEPENNUMERIC , RMS4CC , KIX , IMB , CODABAR , CODE11 , PHARMA , PHARMA2T |
is_bulk | Optional (Optional) Boolean | |
value | Erforderlich Zeichenkette | - |
display_text | Optional (Optional) Boolean | - |
foreground_color | Optional (Optional) Zeichenkette | - |
background_color | Optional (Optional) Zeichenkette | - |
width_scale | Optional (Optional) Ganzzahl | 1-10 |
height | Optional (Optional) Ganzzahl | 30-1000 |
Parameter | Einzelheiten | Beschreibung |
---|---|---|
curl --request POST \
--url 'https://rqrcode.com/api/barcodes' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=New York' \
--form 'type=text' \
--form 'text=Hello!' \
--url 'https://rqrcode.com/api/barcodes' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=New York' \
--form 'type=text' \
--form 'text=Hello!' \
{ "data": { "id": 1 } }
POST https://rqrcode.com/api/barcodes/{barcode_id}
Parameter | Einzelheiten | Beschreibung |
---|---|---|
project_id | Optional (Optional) Zeichenkette | - |
name | Optional (Optional) Zeichenkette | - |
type | Optional (Optional) Zeichenkette | Erlaubte Werte: C32 , C39 , C39+ , C39E , C39E+ , C93 , S25 , S25+ , I25 , I25+ , ITF14 , C128 , C128A , C128B , C128C , EAN2 , EAN5 , EAN8 , EAN13 , UPCA , UPCE , MSI , MSI+ , POSTNET , PLANET , TELEPENALPHA , TELEPENNUMERIC , RMS4CC , KIX , IMB , CODABAR , CODE11 , PHARMA , PHARMA2T |
value | Erforderlich Zeichenkette | - |
display_text | Optional (Optional) Boolean | - |
foreground_color | Optional (Optional) Zeichenkette | - |
background_color | Optional (Optional) Zeichenkette | - |
width_scale | Optional (Optional) Ganzzahl | 1-10 |
height | Optional (Optional) Ganzzahl | 30-1000 |
curl --request POST \
--url 'https://rqrcode.com/api/barcodes/{barcode_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Las Vegas' \
--url 'https://rqrcode.com/api/barcodes/{barcode_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Las Vegas' \
{ "data": { "id": 1 } }
DELETE https://rqrcode.com/api/barcodes/{barcode_id}
curl --request DELETE \
--url 'https://rqrcode.com/api/barcodes/{barcode_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://rqrcode.com/api/barcodes/{barcode_id}' \
--header 'Authorization: Bearer {api_key}' \