I'm trying to fetch ticket details using requests library of python. Here is the command.
r = requests.get("https://"+ domain +".freshdesk.com/api/v2/tickets?updated_since=2015-01-19T02:00:00Z", auth = (api_key, password))
But, I'm just getting latest 30 tickets details.
I tried changing the date and also tried removing it, but nothing seems to work and everytime only last 30 tickets details are coming.