Bulk create physical products

POST https://api.tamio.com/v2/products/physical/bulk/create

Creates up to 500 physical products in a single operation, with optional platform hint for imports from Shopify, WooCommerce, or Ecwid.

Body Parameters

platform string
shopifyecwidwoocommerceother
products array of PhysicalProductInput*

Responses

200 Operation successful

Operation successful

status integer
400 Bad request. Possible `error_code` values:
401 Missing or invalid API key
/products/physical/bulk/create
1const response = await fetch("https://api.tamio.com/v2/products/physical/bulk/create", {
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
}