பார்கோடுகள்
GET https://77qr.io/api/barcodes/
curl --request GET \
--url 'https://77qr.io/api/barcodes/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://77qr.io/api/barcodes/' \
--header 'Authorization: Bearer {api_key}' \
அமைப்பானைகள் | விவரங்கள் | விளக்கம் |
---|---|---|
page | விரும்பினால் முழுஸ்தீர்கமான | நீங்கள் விளையாட விரும்பும் பக்க எண். இயல்புநிலையாக 1 ஆகும். |
results_per_page | விரும்பினால் முழுஸ்தீர்கமான | How many results you want per page. Allowed values are: 10 , 25 , 50 , 100 , 250 , 500 , 1000 . Defaults to 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 15:44:49"
},
],
"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}' \
--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 15:44:49"
}
}
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!' \
--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' \
--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}' \
--url 'https://77qr.io/api/barcodes/{barcode_id}' \
--header 'Authorization: Bearer {api_key}' \