බාර්කෝඩ්ස්

GET https://77qr.io/api/barcodes/
curl --request GET \
--url 'https://77qr.io/api/barcodes/' \
--header 'Authorization: Bearer {api_key}' \
පරාමිතවන්න විස්තරයන් විස්තර
page විකල්පයක්ද? පෂරය ඔබගේ ප්‍රචාරක අංකය ඇතුළත් කිරීමට අවශ්‍ය පිටශූරය. 1 වෙත පෙරනිමිය.
results_per_page විකල්පයක්ද? පෂරය පසුගිය පිටුවක් අනුමත ප්‍රතිඵල ගණන කුමන කරන්න. ඉඩ හිත අගයන්: 10 , 25 , 50 , 100 , 250 , 500 , 1000. 25 වෙනස් වේ.
{ "data": [ { "id": 1, "type": "C32", "name": "Example name", "value": "123456", "barcode": "https://77qr.io/uploads/barcode/example.svg", "settings": { "foreground_color": "#000000", "width_scale": 2, "height": 50, }, "embedded_data": "123456", "last_datetime": null, "datetime": "2025-03-12 12:30:38" }, ], "meta": { "page": 1, "results_per_page": 25, "total": 1, "total_pages": 1 }, "links": { "first": "https://77qr.io/api/barcodes?&page=1", "last": "https://77qr.io/api/barcodes?&page=1", "next": null, "prev": null, "self": "https://77qr.io/api/barcodes?&page=1" } }
GET https://77qr.io/api/barcodes/{barcode_id}
curl --request GET \
--url 'https://77qr.io/api/barcodes/{barcode_id}' \
--header 'Authorization: Bearer {api_key}' \
{ "data": { "id": 1, "type": "C32", "name": "Example name", "value": "123456", "barcode": "https://77qr.io/uploads/barcode/example.svg", "settings": { "foreground_color": "#000000", "width_scale": 2, "height": 50, }, "embedded_data": "123456", "last_datetime": null, "datetime": "2025-03-12 12:30:38" } }
POST https://77qr.io/api/barcodes
පරාමිතවන්න විස්තරයන් විස්තර
project_id විකල්පයක්ද? පෂරය -
name අවශ්‍යයි පේළිය -
type අවශ්‍යයි පේළිය ඉඩදෙන අගයන්: 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 විකල්පයක්ද? බූලියන්
value අවශ්‍යයි පේළිය -
foreground_color විකල්පයක්ද? පේළිය -
width_scale විකල්පයක්ද? පෂරය 1-10
height විකල්පයක්ද? පෂරය 30-1000
පරාමිතවන්න විස්තරයන් විස්තර
curl --request POST \
--url 'https://77qr.io/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://77qr.io/api/barcodes/{barcode_id}
පරාමිතවන්න විස්තරයන් විස්තර
project_id විකල්පයක්ද? පේළිය -
name විකල්පයක්ද? පේළිය -
type විකල්පයක්ද? පේළිය ඉඩදෙන අගයන්: 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 අවශ්‍යයි පේළිය -
foreground_color විකල්පයක්ද? පේළිය -
width_scale විකල්පයක්ද? පෂරය 1-10
height විකල්පයක්ද? පෂරය 30-1000
curl --request POST \
--url 'https://77qr.io/api/barcodes/{barcode_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Las Vegas' \
{ "data": { "id": 1 } }
DELETE https://77qr.io/api/barcodes/{barcode_id}
curl --request DELETE \
--url 'https://77qr.io/api/barcodes/{barcode_id}' \
--header 'Authorization: Bearer {api_key}' \