Thanks for the above solution.
I am able to get a permanent access token as well as I can extract more than 20 records at once. However, i am encountering issue in paginating the form and extracting the results. PFB my issues -
How to paginate the form, below is my current code which is capable of extracting max 5000 records at once but have 7565 records in that form ?
# url link
# extract total records present
response = requests.get(eg_url)
eg_response = response.json()
total_count = eg_response['totalCount']
# set limit parameters while fetching data from url
params = {'limit': total_count, 'offset': 0}
response = requests.get(eg_url, params=params)
eg_response = response.json()
eg_data = pd.DataFrame(eg_response['data'])
Looking forward hearing from you.