create_webhook
Set up webhooks in Basecamp by specifying a project ID, payload URL, and event types to automate notifications and streamline project management workflows.
Instructions
Create a webhook
Input Schema
Name | Required | Description | Default |
---|---|---|---|
payload_url | Yes | Payload URL | |
project_id | Yes | Project ID | |
types | No | Event types |
Input Schema (JSON Schema)
{
"properties": {
"payload_url": {
"description": "Payload URL",
"type": "string"
},
"project_id": {
"description": "Project ID",
"type": "string"
},
"types": {
"description": "Event types",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"project_id",
"payload_url"
],
"type": "object"
}