TVT Connect - Working with WebHooks

In previous versions, it was required to use polling to check the state of the job. Now with version 2.8.0.0, it is possible to optionally register a WebHook (an URL) that will be called when a job is completely processed.

This notification can be used to build an event-driven communication instead of the polling or as an add-on besides the polling. 

The URL must be an HTTPS URL. The PlaceHolder is a string that will be replaced in the URL with the JobId.

 Example:

webHookUrl = https://hook.example.org/JOB

webHookJobIdPlaceHolder = JOB

https://hook.example.org/12345678-1234-1234-1234-123456789012 will be called!

If no webHookJobIdPlaceHolder, but a webhook URL is declared instead, then the URL is called without replacement. If no webhook URL is declared, there will be no notification.

mceclip0

This additional feature is fully compatible with previous versions.