Etc. EzAdmin API
퀵/화물 요금조회
퀵/화물 통합 요금조회. deliveryType(D_QUICK|D_CARGO)에 따라 quick/cargo 객체 필수.
- 접수(order) 시 필요한 요금조회 id(36자리 uuid)를 반환합니다.
- 경유지(waypoint)는 quick/cargo 객체 안에 포함하여 전달합니다.
post/v1/ezadmin/totalCost
Request body
Example request
{
"deliveryType": "D_QUICK",
"fromAddress1": "서울 강남구 봉은사로 479",
"fromAddress2": "479타워 16층",
"toAddress1": "서울 용산구 용산동2가 산 1-3",
"toAddress2": "남산서울타워",
"quick": {
"weight": 5,
"boxType": "XSMALL",
"boxCount": 1,
"itemCategory": "옷",
"itemName": "폴로셔츠",
"itemPrice": 50000,
"itemQuantity": 1,
"pickupRequestDateTime": "2025-01-01 10:00:00",
"comment": "빠른 픽업 부탁드립니다.",
"waypoint": [
{
"address1": "서울 강남구 봉은사로 479",
"address2": "479타워 16층",
"name": "홍길동",
"phoneNumber": "01011110000",
"message": "경유지 메시지"
}
],
"vehicleCategory": "CAR",
"vehicleOption": "CAR_ANY"
},
"cargo": {
"weight": 5,
"boxType": "XSMALL",
"boxCount": 1,
"itemCategory": "옷",
"itemName": "폴로셔츠",
"itemPrice": 50000,
"itemQuantity": 1,
"pickupRequestDateTime": "2025-01-01 10:00:00",
"comment": "빠른 픽업 부탁드립니다.",
"waypoint": [
{
"address1": "서울 강남구 봉은사로 479",
"address2": "479타워 16층",
"name": "홍길동",
"phoneNumber": "01011110000",
"message": "경유지 메시지"
}
],
"vehicleType": "DAMAS",
"vehicleOption": "DAMAS_NORMAL",
"loadingPosition": "LOADING_PARKING_SPACE",
"loadingMethod": "LOADING_YOURSELF",
"unloadingPosition": "UNLOADING_PARKING_SPACE",
"unloadingMethod": "UNLOADING_YOURSELF"
}
}Response
OK
Changes
No recorded changes to this endpoint across all 1 revision of this API.