update_product
Modify product details in ShipHero by updating existing product data using a JSON string and the product ID. Ensures accurate inventory and catalog management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
product_data | Yes | JSON string containing the updated product data | |
product_id | Yes | The ID of the product to update |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"product_data": {
"description": "JSON string containing the updated product data",
"type": "string"
},
"product_id": {
"description": "The ID of the product to update",
"type": "string"
}
},
"required": [
"product_id",
"product_data"
],
"type": "object"
}