function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Ameed UddinAmeed Uddin 

callout


i have a created a callout class and in it a function to get response from an end point say "https://www.eventbriteapi.com/v3/events/search/?token=LRZXU32PCQYH2ZH5PQQC&categories=103&expand=venue%2Corganizer&page=1"
We can see that at this endpoint they have implemeted pagination.So first time you hit this url you get data for first page and a page count. ie you have to make a callout again iteratively so as to get the data for the next page and then subesquently for other pages.
Now I need to know how to implemet the same as we have a governer limit of 10 callouts per transaction and I need to get the entire data in salesforce in one go.
Any sample code will be of great help as I am quite new to SF paltform.