input UpdateProductInput
Fields
| Field | Type | Description |
|---|---|---|
customer_account_id | String | Use this when you are a 3PL acting on behalf of one of your customers |
sku | String! | |
name | String | |
dimensions | DimensionsInput | |
tariff_code | String | |
product_note | String | |
country_of_manufacture | String | |
needs_serial_number | Boolean | |
dropship | Boolean | |
barcode | String | |
customs_description | String | |
ignore_on_customs | Boolean | |
ignore_on_invoice | Boolean | |
tags | [String] | Fully replaces existen tags with the ones provided |
vendors | [UpdateProductVendorInput] | |
final_sale | Boolean | |
virtual | Boolean | |
needs_lot_tracking | Boolean | |
images | [UpdateProductImageInput] | |
cases | [UpdateProductCaseInput] | |
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 |
Referenced By
- product_update Mutation
Example
{
"customer_account_id": "abc123",
"sku": "abc123",
"name": "abc123",
"dimensions": DimensionsInput,
"tariff_code": "abc123",
"product_note": "abc123",
"country_of_manufacture": "abc123",
"needs_serial_number": true,
"dropship": true,
"barcode": "abc123",
"customs_description": "abc123",
"ignore_on_customs": true,
"ignore_on_invoice": true,
"tags": "abc123",
"vendors": UpdateProductVendorInput,
"final_sale": true,
"virtual": true,
"needs_lot_tracking": true,
"images": UpdateProductImageInput,
"cases": UpdateProductCaseInput,
"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
}