How to trigger timer event if no api response without event gateway

I am triggering a rest api and in return, expecting some reply from them. if no response after some days, i need to call another user task. Could you please let me know how to achieve this without event based gateway?

@rammys you can try like this by attaching interrupting timer boundary event to the activity.

1 Like

Thanks Aravind for your response. My model is something like as below,

Call api service task makes async request and conitnues the process and you are waiting to recieve response at Messgae Task(Recieve api response) for the same request right?

Yes, It is waiting for call api service task. However, i dont get any response in receive for mpre 6 days, i need to call some other user task…

Try like this:

1 Like

Thanks Aravind. This will resolve my problem. Let me try.