2. Validation

퀵서비스 요금 정보 조회

퀵서비스 요금정보 조회 - 퀵서비스 주문 접수시 quickInfoId가 필요합니다.

post/v1/totalCost/quick

Request body

weightinteger

무게(단위: kg)

boxCountinteger

박스 수

vehicleType'BIKE' | 'CAR'

운송 수단

pickupRequestDateTimestring date-time

픽업요청일시

fromAddressstring

보내는 분 주소

toAddressstring

받는 분 주소

toAddress2string

받는 분 주소2

commentstring

코멘트

boxType'XSMALL' | 'SMALL' | 'LARGE'

물품 크기 (XSMALL: 서류, SMALL: 소형, LARGE: 대형). 미입력시 서류(XSMALL)

Example request

{
  "weight": 5,
  "boxCount": 1,
  "vehicleType": "BIKE",
  "pickupRequestDateTime": "2024-11-01 10:00:00",
  "fromAddress": "서울 강남구 봉은사로 479 479타워 16층",
  "toAddress": "서울 용산구 용산동2가 산 1-3",
  "toAddress2": "남산서울타워",
  "comment": "빠른 픽업 부탁드립니다.",
  "boxType": "XSMALL"
}

Response

성공

successboolean

성공여부

messagestring

메시지

responseDateTimestring date-time

응답 서버 시간

Example response

{
  "success": true,
  "message": "오류가 있을 경우 오류 메시지",
  "responseDateTime": "2022-05-27T14:45:13.051+09:00"
}

Changes