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
NameDescriptionTypeAdditional 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:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'FormUrlEncodedFormatter' to write type 'CustomOrderTrackingRequestModel'.

Response Information

Resource Description

HttpStatusCode

Response Formats

application/xml, text/xml

Sample:
<HttpStatusCode>Continue</HttpStatusCode>

application/json, text/json

Sample:
100