input CreateProductInput

Fields

FieldTypeDescription
customer_account_idString

Use this when you are a 3PL acting on behalf of one of your customers

nameString!
skuString!
priceStringDEPRECATED This is a warehouse specific field

Will be used as the default price for each warehouse product, if no price is defined on them.

valueStringDEPRECATED 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]!
barcodeString
country_of_manufactureString
dimensionsDimensionsInput
tariff_codeString
product_noteString
kitBoolean
kit_buildBoolean
no_airBoolean
final_saleBoolean
customs_valueString
customs_descriptionString
not_ownedBoolean
ignore_on_customsBoolean
ignore_on_invoiceBoolean
dropshipBoolean
needs_serial_numberBoolean
virtualBoolean
needs_lot_trackingBoolean
packer_noteString
sizeString

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

styleString

The product's style

vendor_part_numberString
consumer_package_codeString
buyer_part_numberString
buyer_style_numberString
auto_packBoolean
images[CreateProductImageInput]
tags[String]
vendors[CreateProductVendorInput]
cases[CreateProductCaseInput]

Referenced By

Example

{
  "customer_account_id": "abc123",
  "name": "abc123",
  "sku": "abc123",
  "price": "abc123",
  "value": "abc123",
  "warehouse_products": CreateWarehouseProductInput,
  "barcode": "abc123",
  "country_of_manufacture": "abc123",
  "dimensions": DimensionsInput,
  "tariff_code": "abc123",
  "product_note": "abc123",
  "kit": true,
  "kit_build": true,
  "no_air": true,
  "final_sale": true,
  "customs_value": "abc123",
  "customs_description": "abc123",
  "not_owned": true,
  "ignore_on_customs": true,
  "ignore_on_invoice": true,
  "dropship": true,
  "needs_serial_number": true,
  "virtual": 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,
  "images": CreateProductImageInput,
  "tags": "abc123",
  "vendors": CreateProductVendorInput,
  "cases": CreateProductCaseInput
}