delete_webhook
Remove a specific webhook by its ID from the ShipHero MCP Server to manage API interactions effectively and streamline webhook management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
webhook_id | Yes | The ID of the webhook to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"webhook_id": {
"description": "The ID of the webhook to delete",
"type": "string"
}
},
"required": [
"webhook_id"
],
"type": "object"
}