delete_webhook
Remove a specific webhook from a Basecamp project by providing the project ID and webhook ID, enabling streamlined integration management.
Instructions
Delete a webhook
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | Project ID | |
webhook_id | Yes | Webhook ID |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"description": "Project ID",
"type": "string"
},
"webhook_id": {
"description": "Webhook ID",
"type": "string"
}
},
"required": [
"project_id",
"webhook_id"
],
"type": "object"
}