PUT
/
cart
/
products
/
{product_id}
/
adjust-inventory
curl --request PUT \
  --url https://production.trackstarhq.com/cart/products/{product_id}/adjust-inventory \
  --header 'Content-Type: application/json' \
  --header 'x-trackstar-access-token: <x-trackstar-access-token>' \
  --header 'x-trackstar-api-key: <x-trackstar-api-key>' \
  --data '{
  "quantity": 1,
  "adjustment_type": "increase",
  "warehouse_id": ""
}'
{
  "data": {
    "id": "product_id",
    "created_date": "2022-01-01T00:00:00Z",
    "updated_date": "2022-01-02T05:05:05Z",
    "name": "product_name",
    "sku": "sku",
    "parent_product_id": "",
    "is_kit": true,
    "active": true,
    "price": 10,
    "inventory": 10,
    "tags": [
      "tag_0"
    ],
    "external_system_url": "https://example.com/cartproduct/123"
  },
  "id": "id",
  "unused_fields": [
    ""
  ]
}

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

product_id
string
required

Body

application/json
quantity
integer

The quantity to adjust the inventory by.

Example:

1

adjustment_type
enum<string>

The type of adjustment to make to the inventory.

Available options:
increase,
decrease
Example:

"increase"

warehouse_id
string

ID of the warehouse to adjust inventory in.

Example:

""

Response

200
application/json
Successful response
data
object
id
string

The ID of the object that has been created or modified

Example:

"id"

unused_fields
string[]

Unused fields