object Product

Fields

FieldTypeDescription
idString

Public API ID for this identifiable.

legacy_idBigInt

Numeric legacy ID for this identifiable; use only where legacy IDs are required.

account_idString

Public API account ID that identifies the related record.

nameString

Name of the product.

skuString

Stock Keeping Unit.

priceStringDEPRECATED This is a warehouse specific field

Customer-facing product price as a decimal monetary amount; distinct from value/customs_value used for declared value.

valueStringDEPRECATED This is a warehouse specific field

Declared or purchase value as a decimal monetary amount; distinct from customer-facing price.

value_currencyStringDEPRECATED This is a warehouse specific field

ISO 4217 currency code for the monetary values on this product.

barcodeString

Product barcode.

country_of_manufactureString

ISO country code for country of manufacture.

dimensionsDimensions

Package or item dimensions. Length, width, and height are in inches unless account or carrier configuration specifies another unit.

tariff_codeString

Tariff code for this product.

kitBoolean

Whether this product is a kit parent SKU.

kit_buildBoolean

Whether this product participates in kit build workflows.

no_airBoolean

Whether this product is restricted from air shipping services.

final_saleBoolean

Whether this product is final sale and not eligible for standard returns.

customs_valueString

Declared or purchase value as a decimal monetary amount; distinct from customer-facing price.

customs_descriptionString

Customs description for this product.

not_ownedBoolean

Whether this product is not owned by the account holding inventory.

dropshipBoolean

Whether this product is fulfilled by dropshipping instead of warehouse inventory.

needs_serial_numberBoolean

True when this product needs serial number; false otherwise.

thumbnailString

Thumbnail for this product.

large_thumbnailString

Large thumbnail for this product.

created_atISODateTime

Created at as an ISO-8601 datetime, returned in UTC unless otherwise noted.

updated_atISODateTime

Updated at as an ISO-8601 datetime, returned in UTC unless otherwise noted.

product_noteString

Product note for this product.

virtualBoolean

Whether this product is virtual and not represented by physical stock.

ignore_on_invoiceBoolean

Whether to ignore on invoice for this product.

ignore_on_customsBoolean

Whether to ignore on customs for this product.

activeBooleanDEPRECATED This is a warehouse specific field

Deprecated warehouse-specific active flag for this product; use warehouse product active instead.

needs_lot_trackingBoolean

True when this product needs lot tracking; false otherwise.

is_assemblyBoolean

Whether this product is assembly.

packer_noteString

Packer note for this product.

sizeString

The product's size (e.g. S, M, L).

styleString

The product's style.

vendor_part_numberString

Vendor part number for this product.

consumer_package_codeString

Consumer package code for this product.

buyer_part_numberString

Buyer part number for this product.

buyer_style_numberString

Buyer style number for this product.

auto_packBoolean

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

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"}]]
}