How to retrigger failed API call?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2025 09:01 AM
We are using flows and making REST API calls for eBonding Change request.
At times API fails due to some reasons.
Say due to some network issue for 5 mins, API calls did not happen.
Multiple updates like state change, work notes, etc happened in source instance and these updates are missed in the target instance.
Once network issue is fixed, how can I retrigger those missed updates?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2025 11:12 AM
Hello @Suggy ,
You can implement a fail - safe mechanism to implement this approach.
Something like below,
Declare a variable Success = false;
Trigger the API,
IF API is Successful,
change the variable Success = true
Else,
Wait for a duration of 5 Min.
Do the above in a While loop, till Success = true.
If the above information helps you, Kindly mark it as Helpful and Accept the solution.
Regards,
Najmuddin.