create_vendor
Create and manage vendor profiles by submitting vendor data in JSON format through the ShipHero MCP Server, streamlining vendor setup and integration.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
vendor_data | Yes | JSON string containing the vendor data |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"vendor_data": {
"description": "JSON string containing the vendor data",
"type": "string"
}
},
"required": [
"vendor_data"
],
"type": "object"
}