CompleteOutboundOrder¶
Use this API to complete outbound order.
POST openapi/warehouse-inventory/v1/outbound-order/complete
Request Parameters¶
Parameter | Type | Required | Description |
---|---|---|---|
outboundOrderType |
string |
true |
Outbound order type,MANUALLY_OUT / SELL |
outboundOrderId |
long |
true |
Outbound order Id |
Response Parameters¶
Name | Type | Description |
---|---|---|
success |
boolean |
true or false |
Request Example¶
Example
curl -X POST \
-H "X-Advai-Country: ID" \
-H "Authorization: {Your Access Key} + ':' + signature" \
-H "Content-Type: application/json" \
-d '{
"outboundOrderType":"MANUALLY_OUT",
"outboundOrderId":1195
}' \
"{Ginee Host}/openapi/warehouse-inventory/v1/outbound-order/complete"
Success
{
"code": "SUCCESS",
"message": "成功",
"data": {
"success": true
},
"extra": null,
"pricingStrategy": "PAY"
}