핸디봇에서 입고요청서 목록을 조회합니다
Header
curl -X GET "https://api.poomgo.com/open-api/wms/receiving-sheets?limit=2&page=1&status=unconfirmed&name=OPEN"
-H "Content-Type: application/json"
-H "accept: application/json"
-H "Authorization: KEY"
Shell
복사
Query Parameter
필드명 | 필수 여부 | 타입 | 설명 |
limit | optional | number | 페이지 크기 |
page | optional | number | 페이지 오프셋 |
status | optional | enum | 입고지시서 상태 |
name | optional | string | 입고지시서 이름 |
status
['unconfirmed', 'standby', 'in_progress', 'completed', 'canceled']
JavaScript
복사
schedule_form_code_key
['pallet', 'box', 'vinyl', 'hanger']
JavaScript
복사
delivery_type
[
'motorcycle',
'damas',
'labo',
'1t_truck',
'2.5t_truck',
'3.5t_truck',
'5t_truck',
'11t_truck',
'20ft_container',
'40ft_container'
]
JavaScript
복사
resource
필드명 | 필수 여부 | 타입 | 설명 |
barcode | required | string | 바코드 |
quantity | required | number | 입고 수량 |
lot | optional | string | 로트 번호 |
expiration_date | optional | date | 만료일시 |
Response
필드명 | 타입 | 설명 |
id | number | |
status | string | 입고 상태 |
name | string | 입고요청서 이름 |
depart_at | date | 출발 일시 |
destination_warehouse | number | 물류 센터 ID |
arrive_at | date | 입하 일자 (상품 도착일) |
schedule_form_code_key | enum | 예정 입고 형태 |
delivery_type | enum | 차량 크기 |
pallet_count | number | 팔레트 수량 |
box_count | number | 박스 수량 |
resources | object[] | 품목 정보 |
description | string | 요청 사항 |
code | string | 입고 코드 |
{
"total": "2",
"page": 1,
"limit": 50,
"rows": [
{
"id": 20831,
"status": "unconfirmed",
"name": "OPEN API TEST 입고요청서",
"origin_warehouse": null,
"depart_at": "2021-06-30T06:00:00.000Z",
"destination_warehouse": 1,
"arrive_at": "2021-06-30T06:00:00.000Z",
"schedule_form_code_key": "hanger",
"delivery_type": "damas",
"pallet_count": 4,
"box_count": 100,
"description": "요청사항",
"resources": [
{
"barcode": "OPEN_API_TEST_BARCODE_01",
"expiration_date": "2022-06-18T15:00:00",
"lot": null,
"quantity": 10,
"done_quantity": 0
},
{
"barcode": "OPEN_API_TEST_BARCODE_04",
"expiration_date": null,
"lot": null,
"quantity": 40,
"done_quantity": 0
},
{
"barcode": "OPEN_API_TEST_BARCODE_03",
"expiration_date": "2022-06-23T15:00:00",
"lot": "OPEN_API_TEST_LOT_02",
"quantity": 30,
"done_quantity": 0
},
{
"barcode": "OPEN_API_TEST_BARCODE_02",
"expiration_date": null,
"lot": "OPEN_API_TEST_LOT_01",
"quantity": 20,
"done_quantity": 0
}
],
"code": "RS_210629_FC01_0088",
"type_code_key": "normal"
},
{
"id": 20830,
"status": "unconfirmed",
"name": "OPEN API TEST 입고요청서_수정",
"origin_warehouse": null,
"depart_at": "2021-06-30T06:00:00.000Z",
"destination_warehouse": 1,
"arrive_at": "2021-06-30T06:00:00.000Z",
"schedule_form_code_key": "pallet",
"delivery_type": "damas",
"pallet_count": 2,
"box_count": 3100,
"description": "요청사항",
"resources": [
{
"barcode": "OPEN_API_TEST_BARCODE_02",
"expiration_date": null,
"lot": "OPEN_API_TEST_LOT_01",
"quantity": 20,
"done_quantity": 0
},
{
"barcode": "OPEN_API_TEST_BARCODE_01",
"expiration_date": "2022-06-18T15:00:00",
"lot": null,
"quantity": 10,
"done_quantity": 0
}
],
"code": "RS_210629_FC01_0087",
"type_code_key": "normal"
}
]
}
JSON
복사