curl --request POST \
--url https://gw-staging.delivered.co.kr/global-ship/open-api/v1/orders \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"data": [
{
"warehouseId": 1,
"sender": {
"name": "홍길동",
"contact": "01012345678"
},
"recipient": {
"country": "US",
"name": "test kim",
"contact": "1235551234",
"address": "Centum jungang-ro, Haeundae-gu",
"addressDetail": "20F, 90",
"city": "Busan",
"state": "Busan",
"zipCode": "48059",
"email": "[email protected]",
"personalCustomsClearanceCode": "1234567890"
},
"orderInfo": {
"mallOrderNumber": "ORDER202501010001",
"carrier": "FEDEX",
"incoterms": "DAP",
"isExportDeclaration": true,
"exportPurpose": "SAMPLE",
"domesticShippingNumber": "65434235223"
},
"packageInfo": {
"actualWeight": 3.26,
"quantity": 1,
"width": 11.76,
"length": 11.76,
"height": 11.76,
"serviceType": "POD"
},
"items": [
{
"name": "test item",
"price": 10000,
"currency": "KRW",
"quantity": 1,
"actualWeight": 3.22,
"hscode": "1234567890",
"itemUrl": "https://www.delivered.co.kr/en",
"itemCode": "1234567890"
}
]
}
]
}
'{
"isSuccess": true,
"orderSuccesses": [
{
"orderId": 1,
"mallOrderNumber": "ORD202501010001"
}
]
}curl --request POST \
--url https://gw-staging.delivered.co.kr/global-ship/open-api/v1/orders \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"data": [
{
"warehouseId": 1,
"sender": {
"name": "홍길동",
"contact": "01012345678"
},
"recipient": {
"country": "US",
"name": "test kim",
"contact": "1235551234",
"address": "Centum jungang-ro, Haeundae-gu",
"addressDetail": "20F, 90",
"city": "Busan",
"state": "Busan",
"zipCode": "48059",
"email": "[email protected]",
"personalCustomsClearanceCode": "1234567890"
},
"orderInfo": {
"mallOrderNumber": "ORDER202501010001",
"carrier": "FEDEX",
"incoterms": "DAP",
"isExportDeclaration": true,
"exportPurpose": "SAMPLE",
"domesticShippingNumber": "65434235223"
},
"packageInfo": {
"actualWeight": 3.26,
"quantity": 1,
"width": 11.76,
"length": 11.76,
"height": 11.76,
"serviceType": "POD"
},
"items": [
{
"name": "test item",
"price": 10000,
"currency": "KRW",
"quantity": 1,
"actualWeight": 3.22,
"hscode": "1234567890",
"itemUrl": "https://www.delivered.co.kr/en",
"itemCode": "1234567890"
}
]
}
]
}
'{
"isSuccess": true,
"orderSuccesses": [
{
"orderId": 1,
"mallOrderNumber": "ORD202501010001"
}
]
}발급받은 시크릿 키
주문 정보 리스트
1 - 2147483647 elementsShow child attributes
OK
성공 유무
주문 등록이 성공하면 true가 반환되며, 성공한 주문 정보는 orderSuccesses 필드에 포함됩니다.
주문 등록이 실패하면 false가 반환되며, orderSuccesses 필드는 비어있습니다.
실패 사유를 확인하고 싶다면, 별도로 제공되는 주문 유효성 검사 API를 통해 자세한 정보를 확인할 수 있습니다.
true
성공 항목
Show child attributes