Update PO Shipping Information (Single Tracking) - Sellercloud API Docs

Overview

This endpoint can be used to update the tracking on a single existing Purchase Order. Note that it will only work if the Client Setting Enable Multiple Tracking Numbers On PO is disabled.

To consume the endpoint, you must:

For information on how you can authenticate, see Authentication.

After you authenticate and receive a valid token, you must pass it to service calls.

Endpoint

An example of this endpoint for XX server is:

For your server, the endpoint will be:

Request

Request Body

Parameter Parameter Type Data Type Description Required
id path Integer ID of the targeted Purchase Order. yes
ShippedOn body DateTime Date and time when the PO was shipped. You can only update this value if the PO Shipping status is not “None”.
Set to null or omit in the request if update of this field is not needed.
no
ShippedViaCarrier body String Shipping Carrier Name.
Set to null or omit in the request if update of this field is not needed.
no
TrackingNumber body String Tracking Number.
Set to null or omit in the request if update of this field is not needed.
no

The request body should be formatted as follows:

{
  "ShippedOn": "2024-04-09T12:26:18.210Z",
  "ShippedViaCarrier": "string",
  "TrackingNumber": "string"
}

Response