register_webhook
Register an HTTPS webhook endpoint to receive event notifications from Kiln, such as job completions or print failures. Optionally filter events or add a signing secret.
Instructions
Register a webhook endpoint to receive Kiln event notifications.
Args:
url: The HTTPS URL that will receive POST requests with event payloads.
events: Optional list of event types to subscribe to (e.g.
["job.completed", "print.failed"]). If omitted, all events are sent.
secret: Optional shared secret for HMAC-SHA256 payload signing.
description: Human-readable label for this endpoint.
Returns the registered endpoint ID. Use ``list_webhooks`` to see all
endpoints and ``delete_webhook`` to remove one.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | ||
| events | No | ||
| secret | No | ||
| description | No |