create_webhook
Set up webhooks to receive real-time notifications for specific events by defining the event type and target URL, enabling automated responses through the ShipHero MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Optional description for this webhook | |
event_type | Yes | The event type to subscribe to (e.g., 'order.created') | |
target_url | Yes | The URL to send webhook events to |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"description": {
"description": "Optional description for this webhook",
"type": "string"
},
"event_type": {
"description": "The event type to subscribe to (e.g., 'order.created')",
"type": "string"
},
"target_url": {
"description": "The URL to send webhook events to",
"format": "uri",
"type": "string"
}
},
"required": [
"event_type",
"target_url"
],
"type": "object"
}