create_webhook
Set up webhooks to receive real-time notifications for specific e-commerce events like order or shipment updates via the ShipBob API MCP Server. Define the event type and target URL for efficient system integration.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
eventType | Yes | Event type to subscribe to (e.g., 'order.created', 'shipment.created') | |
isActive | No | Whether the webhook is active | |
url | Yes | The URL to send webhook notifications to |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"eventType": {
"description": "Event type to subscribe to (e.g., 'order.created', 'shipment.created')",
"type": "string"
},
"isActive": {
"description": "Whether the webhook is active",
"type": "boolean"
},
"url": {
"description": "The URL to send webhook notifications to",
"format": "uri",
"type": "string"
}
},
"required": [
"url",
"eventType"
],
"type": "object"
}