বারকোড
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 | ঐচ্ছিক পূর্ণাংক | প্রতি পৃষ্ঠায় আপনি কতগুলি ফলাফল চান। অনুমোদিত মানগুলি হল: 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-12-05 08:10:30"
},
],
"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-12-05 08:10:30"
}
}
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}' \