Basecamp · Schema

Webhook

CollaborationProject ManagementRESTSaaSTeam Communication

Properties

Name Type Description
id integer Webhook ID
active boolean Whether this webhook is currently active
created_at string Timestamp when the webhook was created
updated_at string Timestamp when the webhook was last updated
payload_url string HTTPS URL where Basecamp sends event notifications
types array Resource types that trigger this webhook
url string API URL for this webhook
app_url string Web URL for this webhook configuration
View JSON Schema on GitHub

JSON Schema

webhook-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/basecamp/json-schema/webhook-schema.json",
  "title": "Webhook",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Webhook ID"
    },
    "active": {
      "type": "boolean",
      "description": "Whether this webhook is currently active"
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the webhook was created"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the webhook was last updated"
    },
    "payload_url": {
      "type": "string",
      "format": "uri",
      "description": "HTTPS URL where Basecamp sends event notifications"
    },
    "types": {
      "type": "array",
      "description": "Resource types that trigger this webhook",
      "items": {
        "type": "string"
      }
    },
    "url": {
      "type": "string",
      "format": "uri",
      "description": "API URL for this webhook"
    },
    "app_url": {
      "type": "string",
      "format": "uri",
      "description": "Web URL for this webhook configuration"
    }
  }
}