update_product
Modify product details in ShipBob's system, including name, SKU, dimensions, weight, and value, by specifying the product ID and relevant attributes.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
barcode | No | Product barcode/UPC | |
description | No | Product description | |
height | No | Height in inches | |
length | No | Length in inches | |
name | No | Product name | |
productId | Yes | The ID of the product to update | |
sku | No | Stock keeping unit | |
value | No | Declared value of the product | |
weight | No | Weight in ounces | |
width | No | Width in inches |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"barcode": {
"description": "Product barcode/UPC",
"type": "string"
},
"description": {
"description": "Product description",
"type": "string"
},
"height": {
"description": "Height in inches",
"type": "number"
},
"length": {
"description": "Length in inches",
"type": "number"
},
"name": {
"description": "Product name",
"type": "string"
},
"productId": {
"description": "The ID of the product to update",
"type": "string"
},
"sku": {
"description": "Stock keeping unit",
"type": "string"
},
"value": {
"description": "Declared value of the product",
"type": "number"
},
"weight": {
"description": "Weight in ounces",
"type": "number"
},
"width": {
"description": "Width in inches",
"type": "number"
}
},
"required": [
"productId"
],
"type": "object"
}