Skip to main content

We have a requirement to retrieve the rc call-log api every 30 mins. I am using java code and planning to integrate the rc call log api in the code.

Do rc provides an option for scheduling the api call for specific time interval so I can call it at a particular time interval?

You can call the call log API from your java passing the require parameters you need.

But to retrieve the call log and calling the API at a particular interval from your java code needs a scheduler .

Since you using Java, you can use a Task scheduler or timer or Quartz scheduler to call the API periodically.


Reply