Appearance
Submit Delivery Error ​
Report a delivery error for a specific order when the delivery information is incorrect or problematic.
Basic Information ​
| Property | Value |
|---|---|
| Method | POST |
| Path | /seller/order/{orderId}/deliver-error |
| Authentication | Bearer Token |
| Content-Type | application/json |
Path Parameters ​
| Parameter | Type | Required | Description |
|---|---|---|---|
orderId | integer | Yes | Order ID |
Request Headers ​
| Header | Type | Required | Description |
|---|---|---|---|
| Authorization | string | Yes | Bearer <accessToken> |
Request Body Parameters ​
| Parameter | Type | Required | Description |
|---|---|---|---|
imageUrls | array[string] | No | Screenshot URLs showing the delivery error |
remark | string | No | Delivery error description |
Request Example ​
http
POST /merchant-api/seller/order/1689644928115784/deliver-error HTTP/1.1
Host: paas-gateway.imetastore.io
Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...
Content-Type: application/json
{
"imageUrls": ["https://example.com/error-screenshot.png"],
"remark": "The delivery code was rejected by the platform"
}Success Response ​
json
{
"code": "0000",
"msg": "Success",
"time": "2025-12-17T13:44:16.000Z",
"data": true
}