GET
/v2/providers/openapi/apis/api/v5/vendors/{vendorId}/ordersheets/{shipmentBoxId}/history2609170000Searching Delivery Status Change History
# 01
Summary
Searching Delivery Status Change History
# 02
Details
Available buyer market: Korean, Taiwan
Search the delivery status history of an order.
Path
GET/v2/providers/openapi/apis/api/v5/vendors/{vendorId}/ordersheets/{shipmentBoxId}/history
Example endpoint
https://api-gateway.coupang.com/v2/providers/openapi/apis/api/v5/vendors/A00012345/ordersheets/{shipmentBoxId}/historyURL API Name
GET_ORDERSHEET_HISTORY
# 03
Path parameters
| Name | Type | Description |
|---|---|---|
| vendorId* | string | Vendor ID Unique code Coupang issues to seller e.g. A00012345 |
| shipmentBoxId* | number | Bundled shipping number Available through PO list search API |
# 04
Response body
Response message
| Name | Type | Description | ||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| code | number | Server response code
| ||||||||||||||
| message | string | Server response message
| ||||||||||||||
| data | object[] | Payment complete list
| ||||||||||||||
| shipmentBoxId data[].shipmentBoxId | number | Bundled shipping number
| ||||||||||||||
| details data[].details | object[] | History details
| ||||||||||||||
| deliveryStatus data[].details[].deliveryStatus | string | Delivery status
| ||||||||||||||
| deliveryStatusDesc data[].details[].deliveryStatusDesc | string | Delivery status description
| ||||||||||||||
| updatedAt data[].details[].updatedAt | string |
Response Example
{
"shipmentBoxId": 123456789012345680,
"data": [
{
"deliveryStatus": "FINAL_DELIVERY",
"deliveryStatusDesc": "배송완료",
"updatedAt": "2025-01-15T14:17:13.973885-08:00"
},
{
"deliveryStatus": "DELIVERING",
"deliveryStatusDesc": "배송중",
"updatedAt": "2025-01-15T14:17:13.973885-08:00"
},
{
"deliveryStatus": "DEPARTURE",
"deliveryStatusDesc": "배송지시",
"updatedAt": "2025-01-15T14:17:13.973885-08:00"
},
{
"deliveryStatus": "INSTRUCT",
"deliveryStatusDesc": "상품준비중",
"updatedAt": "2025-01-15T14:17:13.973885-08:00"
},
{
"deliveryStatus": "ACCEPT",
"deliveryStatusDesc": "결제완료",
"updatedAt": "2025-01-15T14:17:13.973885-08:00"
}
]
}# 05
Error codes
| HTTP | Code | Message |
|---|---|---|
| 400 | HTTP_400 | Bad Request |
Error specification
| HTTP | Type | Error message | Solution |
|---|---|---|---|
| 400 | 400 (check request variable) | Invalid vendor ID | Check if the vendor ID (vendorId) has been entered correctly. |
| 500 | 500 (check request variable) | Internal Exception | Check if the bundled shipping number (shipmentBoxId) has been entered correctly. |