register_webhook
Set up a webhook endpoint to receive real-time Kiln event notifications. Subscribe to specific events or all events, with optional HMAC signing for secure payloads.
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 |