배차 요청
- REQUSET (CURL / GET)
curl --request GET \
--url 'https://apis.openapi.sk.com/tms/allocation?optionType=1' \
--header 'Accept: application/json' \
--header 'appKey: My Project의 Project Key'
- RESPONSE (200 | application/json)
{
"resultCode": "200",
"resultMessage": "success",
"mappingKey": "cb6789c6-7c2d-4fee-a703-2e19ba69965f"
}
- RESPONSE (PARAMETERS)
Name | Type | Mandatory | Example | Description |
---|---|---|---|---|
resultCode | String | Y | 200 | HTTP Status Code |
resultMessage | Number | Y | success | - |
mappingKey | String | Y | cb6789c6-7c2d-4fee-a703-2e19ba69965f | 배차 요청한 Key 정보입니다. 배차가 완료되었는지 확인할 때 배차결과요청API에서 이 Key를 가지고 요청을 해야 합니다. |