قم بتثبيت تطبيقنا 🪄 انقر فوق أيقونة في الزاوية العلوية اليمنى لشريط العنوان.

الباركودات

GET https://rqrcode.com/api/barcodes/
curl --request GET \
--url 'https://rqrcode.com/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://rqrcode.com/uploads/barcode/example.svg", "settings": { "foreground_color": "#000000", "width_scale": 2, "height": 50, }, "embedded_data": "123456", "last_datetime": "2021-10-31 09:47:25", "datetime": "2021-10-29 16:32:25" }, ], "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}' \
{ "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": "2021-10-31 09:47:25", "datetime": "2021-10-29 16:32:25" } }
POST https://rqrcode.com/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://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}
المعلمات تفاصيل الوصف
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://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}' \