object Product
Fields
| Field | Type | Description |
|---|---|---|
id | String | |
legacy_id | Int | |
account_id | String | |
name | String | Name of the product |
sku | String | Stock Keeping Unit |
price | String | DEPRECATED This is a warehouse specific field Price of the product |
value | String | DEPRECATED This is a warehouse specific field Price paid for the product |
value_currency | String | DEPRECATED This is a warehouse specific field |
barcode | String | Product barcode |
country_of_manufacture | String | |
dimensions | Dimensions | |
tariff_code | String | |
kit | Boolean | |
kit_build | Boolean | |
no_air | Boolean | |
final_sale | Boolean | |
customs_value | String | |
customs_description | String | |
not_owned | Boolean | |
dropship | Boolean | |
needs_serial_number | Boolean | |
thumbnail | String | |
large_thumbnail | String | |
created_at | ISODateTime | |
updated_at | ISODateTime | |
product_note | String | |
virtual | Boolean | |
ignore_on_invoice | Boolean | |
ignore_on_customs | Boolean | |
active | Boolean | DEPRECATED This is a warehouse specific field |
needs_lot_tracking | Boolean | |
packer_note | String | |
size | String | The product's size (e.g. S, M, L) |
style | String | The product's style |
vendor_part_number | String | |
consumer_package_code | String | |
buyer_part_number | String | |
buyer_style_number | String | |
auto_pack | Boolean | |
warehouse_products | [WarehouseProduct] | The physical instances of the product, stored in warehouses |
fba_inventory | [FbaInventory] | Inventory available at FBA |
images | [ProductImage] | |
tags | [String] | |
vendors | [ProductVendor] | |
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 |
cases | [Case] |
Referenced By
- CreateProductOutput Type
- InventoryChange Type
- LineItem Type
- Product Type
- ProductEdge Type
- ProductMutationOutput Type
- ProductQueryResult Type
- ReturnLineItem Type
- ShippingPlanPackageLineItem Type
- WarehouseProduct Type
- WholesaleOrderAutoAllocateForPickingType Type
Example
{
"id": "abc123",
"legacy_id": 987,
"account_id": "abc123",
"name": "abc123",
"sku": "abc123",
"price": "abc123",
"value": "abc123",
"value_currency": "abc123",
"barcode": "abc123",
"country_of_manufacture": "abc123",
"dimensions": Dimensions,
"tariff_code": "abc123",
"kit": true,
"kit_build": true,
"no_air": true,
"final_sale": true,
"customs_value": "abc123",
"customs_description": "abc123",
"not_owned": true,
"dropship": true,
"needs_serial_number": true,
"thumbnail": "abc123",
"large_thumbnail": "abc123",
"created_at": "abc123",
"updated_at": "abc123",
"product_note": "abc123",
"virtual": true,
"ignore_on_invoice": true,
"ignore_on_customs": true,
"active": true,
"needs_lot_tracking": true,
"packer_note": "abc123",
"size": "abc123",
"style": "abc123",
"vendor_part_number": "abc123",
"consumer_package_code": "abc123",
"buyer_part_number": "abc123",
"buyer_style_number": "abc123",
"auto_pack": true,
"warehouse_products": WarehouseProduct,
"fba_inventory": FbaInventory,
"images": ProductImage,
"tags": "abc123",
"vendors": ProductVendor,
"components": Product,
"kit_components": KitComponent,
"cases": Case
}