Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
How do we trigger Talend Jobs when a new data is requested/available in Power platforms with the help of REST endpoints.
When a new data is requested in power platform, Talend should know by its own that new data is available in source system and Talend on its own should be triggered without manual intervention of running talend job.
Hi
If you want to achieve it through Talend Job, call the REST API every once in a while to see if there are new data available, if yes, trigger another job. The jobs looks like:
tInfiniteLoop--iterate--tRest--main--tJavaRow--runIf--tRunJob(call another Talend Job)
tInfiniteLoop: creates an infinite loop.
tJavaRow: get the response and parse it, check if the response contains new data.
RunIf: trigger another Talend Job based on the result of checking whether new data is available.
Regards
Shong
Hi
I have url, username, password, clientid of power platform. How to make use of these values in tRest.
Do we need anything apart from the above mentioned values?
Also how do we modify the above values in URL parameter and https headers of tRest component?
Regards
Pardhu