I have an adobe connect account in which I am able to create a number of meetings. I am trying to use the API (as detailed here) to show a list of available meetings in my application.
I am doing some basic web request calls to the API and parsing the resulting XML data. This part I can do fine.
However, I have now realised that when I add a new meeting it does not appear in the API call immediately. Probably took about 30 minutes to appear.
My web request query for getting the list of meeting is like...
https://[API-URL]/api/xml?action=report-bulk-objects&filter-type=meeting
I have also tried doing this as a POST request, and adding a random param to ensure it is not a caching issue - no such luck
Is this an issue with the API? Is there a time delay on API data updates? Am I missing something from the query string? or maybe there is a default filter in place that I need to explicit remove within the query?
Thanks for any help
The bulk API you are using is an aggregate and may take some time for a backend process to run in order to update the meeting list. You don't specify your use-case, but if you are simply looking for your own meetings, then you should use the report-my-meetings call instead, which is real-time.
good luck!