Skip to main content
PUT
/
wms
/
kits
/
{kit_id}
Update a Kit Product
curl --request PUT \
  --url https://production.trackstarhq.com/wms/kits/{kit_id} \
  --header 'Content-Type: application/json' \
  --header 'x-trackstar-access-token: <x-trackstar-access-token>' \
  --header 'x-trackstar-api-key: <x-trackstar-api-key>' \
  --data '
{
  "sku": "sku",
  "inventory_items": [
    {
      "inventory_item_id": "inventory_item_id",
      "sku": "sku",
      "unit_quantity": 1
    }
  ],
  "trackstar_tags": [
    "tag1",
    "tag2",
    {
      "tag3": "value3"
    }
  ],
  "name": "name",
  "gtin": "gtin"
}
'
{
  "id": "id",
  "unused_fields": [
    "<string>"
  ]
}

Headers

x-trackstar-api-key
string
required

Your organization-level Trackstar API key.

Example:

"<x-trackstar-api-key>"

x-trackstar-access-token
string
required

Your user's access token for a specific integration (ShipHero, Extensiv, etc).

Example:

"<x-trackstar-access-token>"

Path Parameters

kit_id
string
required

Body

application/json
sku
string
required

sku

Example:

"sku"

inventory_items
WmsKitUpdateInventoryItem · object[]
required

Inventory Items that make up this kit.

Example:
[
  {
    "inventory_item_id": "inventory_item_id",
    "sku": "sku",
    "unit_quantity": 1
  }
]
trackstar_tags
any[] | null

A list of custom tags associated with the resource. A tag can be either a string or a dictionary with one key-value pair.

Example:
["tag1", "tag2", { "tag3": "value3" }]
name
string

name

Example:

"name"

gtin
string

The Global Trade Item Number of the product. i.e. UPC, EAN, or ISBN.

Example:

"gtin"

measurements
ProductMeasurements · object

Response

Successful response

id
string
required

The ID of the object that has been created or modified

Example:

"id"

unused_fields
string[]
required

Unused fields

data
WmsKitApiItemSchema · object