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

Overview

This endpoint can be used to delete the 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
TrackingNumbersIDs body array List of the IDs of existing tracking numbers to remove from the targeted PO. You can use the Get PO Shipping Information endpoint to retrieve the IDs. yes

The request body should be formatted as follows:

{
  "TrackingNumbersIDs": [
    0
  ]
}

Response