Update Order Shipping Packages - Sellercloud API Docs

Update Order Shipping Packages

Table of Contents

Overview

This endpoint can be used to update the details of existing packages in a single sales order. Note that you cannot change the contents of the package with this endpoint. To do that, you would need to use the Create Shipping Packages endpoint, which allows you to delete and recreate them.

In order to update existing shipping packages of an order, you must:

Information on how you can authenticate: Authentication

As soon as you do the authentication and receive a valid token, you need to pass it on to each call when updating inventory.

Endpoint

An example of such an endpoint on XX server is https://xx.api.sellercloud.com/rest/api/Orders/{orderID}/Shipping/Packages

Request

Parameter Data Type Description Is Required
Packages object Shipping Packages. Yes
ID string ID of an existing package within that order. Yes
Length int The package length. No
Width int The package width. No
Height int The package height. No
Weight int The package shipping weight. No
DeclaredValue int The declared value for the contents of the package. No

Request Format

{
  "Packages": [
    {
      "ID": 0,
      "Length": 0,
      "Width": 0,
      "Height": 0,
      "Weight": 0,
      "DeclaredValue": 0
    }
  ]
}

Response