POST api/Shipping/OrderInformation/UpdateTrackingNumber
This API method will allow you to update order status and tracking.
Request Information
URI Parameters
None.
Body Parameters
OrderTrackingRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| orderID | integer |
None. |
|
| trackingNumber | string |
None. |
Request Formats
application/xml, text/xml
Sample:
<OrderTrackingRequestModel> <OrderID>1</OrderID> <TrackingNumber>sample string 2</TrackingNumber> </OrderTrackingRequestModel>
application/json, text/json
Sample:
{
"orderID": 1,
"trackingNumber": "sample string 2"
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpStatusCodeResponse Formats
application/xml, text/xml
Sample:
<HttpStatusCode>Continue</HttpStatusCode>
application/json, text/json
Sample:
100