Update Container Custom Columns - Sellercloud API Docs

Update Container Custom Columns

Overview

You can use this endpoint to update the values of one or multiple existing custom columns for a single Shipping Container. In order to do that, you must:

For information on how you can authenticate, see: Authentication.

Endpoint

An example of such an endpoint for server XX is:

https://xx.api.sellercloud.com/api/ShippingContainers/{id}/CustomColumns

For your server, the endpoint will be:

https://{your_server_id}.api.sellercloud.com/api/ShippingContainers/{id}/CustomColumns

Request

Parameter Data Type Description Is Required
ColumnName string Name of the existing column. This is not the display name seen in the UI. This should be the Column Name instead. Yes
Value string The new value of the custom column. Writing “” will remove the existing value. Providing Null will return an error. Yes

Request Body

{
  "CustomColumns": [
    {
      "ColumnName": "string",
      "Value": {}
    }
  ]
}

Response