Bulk update product properties

POST https://api.tamio.com/v2/products/bulk/update

Updates shared properties across up to 50 products at once — dates, visibility flags, stock adjustments, and pricing rules.

Body Parameters

products array of string*
release_date string
expiry_date string
new_from string
new_to string
on_sale boolean
buyable boolean
discount_allowed boolean
reviews_allowed boolean
exclude_from_feed boolean
unlimited_stock boolean
shown boolean
min_units integer
max_units integer
retries integer
cancel_action string
cancelpause
cancel_behaviour string
immediateend_of_period
pricing_updates array of object
stock_updates object

Responses

200 Products updated successfully

Products updated successfully

status integer
ids array of string
400 Bad request. Possible `error_code` values:
401 Missing or invalid API key
/products/bulk/update
1const response = await fetch("https://api.tamio.com/v2/products/bulk/update", {
2 method: "POST",
3 headers: {
4 "Authorization": "Bearer YOUR_API_KEY",
5 "Content-Type": "application/json"
6 },
7 body: JSON.stringify({
8 // ... request body
9 })
10});
11const data = await response.json();
Responses
{
  "status": 200,
  "ids": []
}