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

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

Response Information

Resource Description

HttpStatusCode

Response Formats

application/xml, text/xml

Sample:
<HttpStatusCode>Continue</HttpStatusCode>

application/json, text/json

Sample:
100