unsubscribe_from_webhook
Remove a webhook subscription by specifying its ID to stop receiving notifications from the ShipStation API MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
webhookId | Yes | Webhook ID to unsubscribe from |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"webhookId": {
"description": "Webhook ID to unsubscribe from",
"type": "number"
}
},
"required": [
"webhookId"
],
"type": "object"
}