Discussions
Increase limit on API call list.
5 days ago by Julio Flores
Hi.
I am trying to get the call list from the API, but currently get only 25 calls (records).
Does anyone know a way to get more calls? Any tips will be greatly appreciated.
This is what I am trying:
import requests
url = "https://dialpad.com/api/v2/call?apikey=API_KEY &start_after=1704067200007&start_before=1747958400000"
headers = {"accept": "application/json"}
response = requests.get(url, headers=headers)
print(response.text)
Thanks.