GET api/AddOrderTracking?orderId={orderId}&trackingNumber={trackingNumber}&carrier={carrier}

Here you can add tracking numbers from your carrier to your order if you didn't use Bandel DHL label received from GetOrderShippingLabels. Please add one trackingnumber at a time. Don't forget to set Shipped Status by using OrderStatusUpdate.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
orderId

string

Required

trackingNumber

string

Required

carrier

Following carriers are allowed: DHL, DPD, GLS, UPS

string

Required

Body Parameters

None.

Response Information

Resource Description

TrackingResponse
NameDescriptionTypeAdditional information
Status

Status

None.

ErrorMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": "SUCCESS",
  "ErrorMessage": "sample string 1"
}

application/xml, text/xml

Sample:
<TrackingResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bandel.Dropshipping.API.Controllers">
  <ErrorMessage>sample string 1</ErrorMessage>
  <Status>SUCCESS</Status>
</TrackingResponse>