POST api/Personal/OrderInformation/UpdateTrackingNumber
This API method will allow you to update order status and tracking, along with URL and Carrier overrides.
Request Information
URI Parameters
None.
Body Parameters
CustomOrderTrackingRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| orderID | integer |
None. |
|
| trackingNumber | string |
None. |
|
| trackingURL | string |
None. |
|
| carrierName | string |
None. |
Request Formats
application/xml, text/xml
Sample:
<CustomOrderTrackingRequestModel> <OrderID>1</OrderID> <TrackingNumber>sample string 2</TrackingNumber> <TrackingURL>sample string 3</TrackingURL> <CarrierName>sample string 4</CarrierName> </CustomOrderTrackingRequestModel>
application/json, text/json
Sample:
{
"orderID": 1,
"trackingNumber": "sample string 2",
"trackingURL": "sample string 3",
"carrierName": "sample string 4"
}
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