Run task periodically and ad-hoc

I would like to run task periodically and also ad-hoc with endpoint.
I have task that is starting with scheduler. How could I start it manually with call the endpoint at the same time.
Thank you for the advice
Radek

The best way how to do it is to have two tasks:

  • One task where you will have routine for integration. This task will be set be triggered by scheduler with required periodicity.

  • Second task will be connected to endpoint - POST or GET method, up to your preference. You don’t need any input or output schema. This task will have just one step with “Integray Start Task Connector”. You can decide if you want to wait for triggered task completion or not byt selecting asynchronous or synchronous definition in connector configuration.

2 Likes