Quick start
Example webhook
Setting Up Transformation Webhooks
This guide explains how to configure webhooks to receive notifications when your data transformations are completed.
Prerequisites
- Your API Key
- Your Transform ID for the transformation you want to monitor
- YOUR WEBHOOK URL
- YOUR WEBHOOK AUTHENTICATION KEY
Step 1: Create a Webhook
First, create a webhook by making the following API call:
Python
Save the webhook_id
from the response for use in Step 2.
Step 2: Subscribe to Transform Completion Events
After creating the webhook, subscribe to transformation completion events using the following API call:
Python
Required Replacements
Before making the API calls, replace the following placeholders with your actual values:
YOUR_API_URL
: Your Trellis API URLYOUR_API_KEY
: Your Trellis API authentication keyYOUR_TRANSFORM_ID
: The ID of the transformation you want to monitorYOUR_WEBHOOK_ID
: The webhook ID received from Step 1
What Happens Next?
Once configured, you will receive webhook notifications at your specified endpoint whenever the specified transformation completes. The webhook will contain details about the completed transformation.