object Product
Fields
| Field | Type | Description |
|---|---|---|
id | String | Public API ID for this identifiable. |
legacy_id | BigInt | Numeric legacy ID for this identifiable; use only where legacy IDs are required. |
account_id | String | Public API account ID that identifies the related record. |
name | String | Name of the product. |
sku | String | Stock Keeping Unit. |
price | String | DEPRECATED This is a warehouse specific field Customer-facing product price as a decimal monetary amount; distinct from value/customs_value used for declared value. |
value | String | DEPRECATED This is a warehouse specific field Declared or purchase value as a decimal monetary amount; distinct from customer-facing price. |
value_currency | String | DEPRECATED This is a warehouse specific field ISO 4217 currency code for the monetary values on this product. |
barcode | String | Product barcode. |
country_of_manufacture | String | ISO country code for country of manufacture. |
dimensions | Dimensions | Package or item dimensions. Length, width, and height are in inches unless account or carrier configuration specifies another unit. |
tariff_code | String | Tariff code for this product. |
kit | Boolean | Whether this product is a kit parent SKU. |
kit_build | Boolean | Whether this product participates in kit build workflows. |
no_air | Boolean | Whether this product is restricted from air shipping services. |
final_sale | Boolean | Whether this product is final sale and not eligible for standard returns. |
customs_value | String | Declared or purchase value as a decimal monetary amount; distinct from customer-facing price. |
customs_description | String | Customs description for this product. |
not_owned | Boolean | Whether this product is not owned by the account holding inventory. |
dropship | Boolean | Whether this product is fulfilled by dropshipping instead of warehouse inventory. |
needs_serial_number | Boolean | True when this product needs serial number; false otherwise. |
thumbnail | String | Thumbnail for this product. |
large_thumbnail | String | Large thumbnail for this product. |
created_at | ISODateTime | Created at as an ISO-8601 datetime, returned in UTC unless otherwise noted. |
updated_at | ISODateTime | Updated at as an ISO-8601 datetime, returned in UTC unless otherwise noted. |
product_note | String | Product note for this product. |
virtual | Boolean | Whether this product is virtual and not represented by physical stock. |
ignore_on_invoice | Boolean | Whether to ignore on invoice for this product. |
ignore_on_customs | Boolean | Whether to ignore on customs for this product. |
active | Boolean | DEPRECATED This is a warehouse specific field Deprecated warehouse-specific active flag for this product; use warehouse product active instead. |
needs_lot_tracking | Boolean | True when this product needs lot tracking; false otherwise. |
is_assembly | Boolean | Whether this product is assembly. |
packer_note | String | Packer note for this product. |
size | String | The product's size (e.g. S, M, L). |
style | String | The product's style. |
vendor_part_number | String | Vendor part number for this product. |
consumer_package_code | String | Consumer package code for this product. |
buyer_part_number | String | Buyer part number for this product. |
buyer_style_number | String | Buyer style number for this product. |
auto_pack | Boolean | Whether this product can be packed automatically without manual packing choices. |
warehouse_products | [WarehouseProduct] | The physical instances of the product, stored in warehouses. |
fba_inventory | [FbaInventory] | Inventory available at FBA. |
images | [ProductImage] | List of images associated with this product. |
tags | [String] | List of tags for this product. |
vendors | [ProductVendor] | List of vendors associated with this product. |
components | [Product] | DEPRECATED This has been replaced by kit_components For kits, this will be the list of products that make up the kit. |
kit_components | [KitComponent] | For kits, this will be the list of references to the products that make up the kit and their quantities. |
assembly_components | [AssemblyComponent] | For assembly products, the list of components and their quantities. |
cases | [Case] | List of cases for this product. |
Referenced By
- AddAssemblyComponentsOutput Type
- ClearAssemblyComponentsOutput Type
- CreateProductOutput Type
- InventoryChange Type
- ItemLocation Type
- LineItem Type
- Product Type
- ProductEdge Type
- ProductMutationOutput Type
- ProductQueryResult Type
- RemoveAssemblyComponentsOutput Type
- ReturnLineItem Type
- ShippingPlanPackageLineItem Type
- UpdateAssemblyComponentsOutput Type
- WarehouseProduct Type
- WholesaleOrderAutoAllocateForPickingType Type
Example
{
"id": "UmVjb3JkOjEyMzQ=",
"legacy_id": 1234,
"account_id": "QWNjb3VudDoxMjM0",
"name": "Blue Tee",
"sku": "BLUE-TEE-M",
"price": "19.99",
"value": "19.99",
"value_currency": "19.99",
"barcode": "012345678905",
"country_of_manufacture": "US",
"dimensions": {length: 12.5, width: 8.0, height: 4.0},
"tariff_code": "STANDARD",
"kit": true,
"kit_build": true,
"no_air": true,
"final_sale": true,
"customs_value": "19.99",
"customs_description": "Customer requested expedited handling.",
"not_owned": true,
"dropship": true,
"needs_serial_number": true,
"thumbnail": "https://example.com/images/blue-tee.jpg",
"large_thumbnail": "https://example.com/images/blue-tee.jpg",
"created_at": "2026-07-09T15:30:00Z",
"updated_at": "2026-07-09T15:30:00Z",
"product_note": "Customer requested expedited handling.",
"virtual": true,
"ignore_on_invoice": false,
"ignore_on_customs": false,
"active": true,
"needs_lot_tracking": true,
"is_assembly": true,
"packer_note": "Customer requested expedited handling.",
"size": "M",
"style": "crew-neck",
"vendor_part_number": "VP-100045",
"consumer_package_code": "STANDARD",
"buyer_part_number": "BP-100045",
"buyer_style_number": "crew-neck",
"auto_pack": true,
"warehouse_products": [[{sku: "BLUE-TEE-M", name: "Blue Tee"}]],
"fba_inventory": ["FBA"],
"images": [[{sku: "BLUE-TEE-M", name: "Blue Tee"}]],
"tags": ["priority", "vip"],
"vendors": [[{sku: "BLUE-TEE-M", name: "Blue Tee"}]],
"components": [[{sku: "BLUE-TEE-M", name: "Blue Tee"}]],
"kit_components": [[{sku: "BLUE-TEE-M", name: "Blue Tee"}]],
"assembly_components": [[{sku: "BLUE-TEE-M", name: "Blue Tee"}]],
"cases": [[{sku: "BLUE-TEE-M", name: "Blue Tee"}]]
}