update_vendor
Update vendor information directly in the ShipHero MCP Server by providing the vendor ID and updated data in JSON format.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
vendor_data | Yes | JSON string containing the updated vendor data | |
vendor_id | Yes | The ID of the vendor to update |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"vendor_data": {
"description": "JSON string containing the updated vendor data",
"type": "string"
},
"vendor_id": {
"description": "The ID of the vendor to update",
"type": "string"
}
},
"required": [
"vendor_id",
"vendor_data"
],
"type": "object"
}