Appearance
Get Delivery Error Details ​
Retrieve delivery error detail records for a specific order.
Basic Information ​
| Property | Value |
|---|---|
| Method | GET |
| Path | /seller/order/{orderId}/deliver-error |
| Authentication | Bearer Token |
Path Parameters ​
| Parameter | Type | Required | Description |
|---|---|---|---|
orderId | integer | Yes | Order ID |
Request Headers ​
| Header | Type | Required | Description |
|---|---|---|---|
| Authorization | string | Yes | Bearer <accessToken> |
Request Example ​
http
GET /merchant-api/seller/order/1689644928115784/deliver-error HTTP/1.1
Host: paas-gateway.imetastore.io
Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...Response Parameters ​
| Parameter | Type | Description |
|---|---|---|
data | array | List of delivery error records |
data[].imageUrls | array[string] | Error screenshot URLs |
data[].description | string | Error description |
data[].content | string | Content |
data[].isSendEmail | boolean | Whether email was sent |
data[].createTime | string | Error report time (ISO 8601) |
data[].deliveringNumber | integer | Delivery quantity |
Success Response ​
json
{
"code": "0000",
"msg": "Success",
"time": "2025-12-17T13:44:16.000Z",
"data": [
{
"imageUrls": ["https://example.com/error-screenshot.png"],
"description": "The delivery code was rejected by the platform",
"content": "",
"isSendEmail": false,
"createTime": "2025-12-17T15:00:00.000Z",
"deliveringNumber": 1
}
]
}