바코드
GET https://qrcodemonkey.net/api/barcodes/
curl --request GET \
--url 'https://qrcodemonkey.net/api/barcodes/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://qrcodemonkey.net/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://qrcodemonkey.net/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://qrcodemonkey.net/api/barcodes?&page=1",
"last": "https://qrcodemonkey.net/api/barcodes?&page=1",
"next": null,
"prev": null,
"self": "https://qrcodemonkey.net/api/barcodes?&page=1"
}
}
GET https://qrcodemonkey.net/api/barcodes/{barcode_id}
curl --request GET \
--url 'https://qrcodemonkey.net/api/barcodes/{barcode_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://qrcodemonkey.net/api/barcodes/{barcode_id}' \
--header 'Authorization: Bearer {api_key}' \
{
"data": {
"id": 1,
"type": "C32",
"name": "Example name",
"value": "123456",
"barcode": "https://qrcodemonkey.net/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://qrcodemonkey.net/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 | 선택 사항 부울(Boolean) | |
value | 필수 문자열 | - |
foreground_color | 선택 사항 문자열 | - |
width_scale | 선택 사항 정수 | 1-10 |
height | 선택 사항 정수 | 30-1000 |
매개변수 | 세부 정보 | 설명 |
---|---|---|
curl --request POST \
--url 'https://qrcodemonkey.net/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://qrcodemonkey.net/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://qrcodemonkey.net/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://qrcodemonkey.net/api/barcodes/{barcode_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Las Vegas' \
--url 'https://qrcodemonkey.net/api/barcodes/{barcode_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Las Vegas' \
{
"data": {
"id": 1
}
}
DELETE https://qrcodemonkey.net/api/barcodes/{barcode_id}
curl --request DELETE \
--url 'https://qrcodemonkey.net/api/barcodes/{barcode_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://qrcodemonkey.net/api/barcodes/{barcode_id}' \
--header 'Authorization: Bearer {api_key}' \