Jobs Status Notification
This page describes a way to listen for updates happening with your connected datasets through setting up webhooks.
Last updated
This page describes a way to listen for updates happening with your connected datasets through setting up webhooks.
Telmai allows you to setup webhooks that get triggered when processing job status changes. If defined, the callback gets triggered when:
Job is running
Intermediate job state changes
Job is completed
The following params are sent as part of the body
tenant
Associated tenant ID where the callback happened
source
Associated dataset source ID
jobId
Associated job ID
status
Job status (IN_PROGRESS, FINISHED, FAILED, PREPARING, BATCH_WAIT)
details
Description of job status
When Telmai triggers a webhook, it sends a POST request to your URL with a JSON body similar to:
{
"tenant": "your-tenant-id",
"source": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"jobId": "job-20260417-001",
"status": "FINISHED",
"details": "Job completed successfully"
}To use this feature, you will need to:
Navigate to the configuration page
Open the settings for the associated dataset
Click on Job Notifications Settings
In the Webhook URL field, enter the endpoint URL where Telmai should send callbacks
Click Save to apply the configuration
Your webhook endpoint must be publicly accessible and respond with an HTTP 2xx status code. Telmai retries delivery on failure.
Last updated