Get PO Shipping Information (Multiple Tracking Numbers) - Sellercloud API Docs

Get PO Shipping Information (Multiple Tracking Numbers)

Overview

This endpoint can be used to retrieve the shipping information and tracking numbers on a single existing Purchase Order. Note that it will only work if the Client Setting Enable Multiple Tracking Numbers On PO is enabled.

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

Response

Response Body

{
  "TrackingNumbers": [
    {
      "ID": 0,
      "ShippedOn": "2024-11-25T12:47:10.456Z",
      "ShippingCarrier": "string",
      "TrackingNumber": "string"
    }
  ]
}