input CreateProductInput
Fields
| Field | Type | Description |
|---|---|---|
customer_account_id | String | Use this when you are a 3PL acting on behalf of one of your customers. |
name | String! | Human-readable name for this product. |
sku | String! | SKU. SKU matching is case-insensitive and ignores surrounding whitespace. |
price | String | DEPRECATED This is a warehouse specific field Will be used as the default price for each warehouse product, if no price is defined on them. |
value | String | DEPRECATED This is a warehouse specific field Will be used as the default value for each warehouse product, if no value is defined on them. |
warehouse_products | [CreateWarehouseProductInput]! | List of warehouse products for this product. |
barcode | String | Barcode value for the product. |
country_of_manufacture | String | ISO country code for country of manufacture. |
dimensions | DimensionsInput | 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. |
product_note | String | Product note 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. |
ignore_on_customs | Boolean | Whether to ignore on customs for this product. |
ignore_on_invoice | Boolean | Whether to ignore on invoice for this product. |
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. |
virtual | Boolean | Whether this product is virtual and not represented by physical stock. |
needs_lot_tracking | Boolean | True when this product needs lot tracking; false otherwise. |
packer_note | String | Packer note for this product. |
is_assembly | Boolean | Set to true if the product is classified as an assembly within work order workflows. |
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. |
images | [CreateProductImageInput] | List of images associated with this product. |
tags | [String] | List of tags for this product. |
vendors | [CreateProductVendorInput] | List of vendors associated with this product. |
cases | [CreateProductCaseInput] | List of cases for this product. |
Referenced By
- product_create Mutation
Example
{
"customer_account_id": "QWNjb3VudDoxMjM0",
"name": "Blue Tee",
"sku": "BLUE-TEE-M",
"price": "19.99",
"value": "19.99",
"warehouse_products": [[{sku: "BLUE-TEE-M", name: "Blue Tee"}]],
"barcode": "012345678905",
"country_of_manufacture": "US",
"dimensions": {length: 12.5, width: 8.0, height: 4.0},
"tariff_code": "STANDARD",
"product_note": "Customer requested expedited handling.",
"kit": true,
"kit_build": true,
"no_air": true,
"final_sale": true,
"customs_value": "19.99",
"customs_description": "Customer requested expedited handling.",
"not_owned": true,
"ignore_on_customs": false,
"ignore_on_invoice": false,
"dropship": true,
"needs_serial_number": true,
"virtual": true,
"needs_lot_tracking": true,
"packer_note": "Customer requested expedited handling.",
"is_assembly": true,
"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,
"images": [[{sku: "BLUE-TEE-M", name: "Blue Tee"}]],
"tags": ["priority", "vip"],
"vendors": [[{sku: "BLUE-TEE-M", name: "Blue Tee"}]],
"cases": [[{sku: "BLUE-TEE-M", name: "Blue Tee"}]]
}