create_product
Add new products to ShipBob's fulfillment system by defining essential details like name, SKU, barcode, dimensions, weight, and value. Required fields: name and SKU.
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 | Yes | Product name | |
sku | Yes | Stock keeping unit (unique identifier) | |
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"
},
"sku": {
"description": "Stock keeping unit (unique identifier)",
"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": [
"name",
"sku"
],
"type": "object"
}