@markus
To fetch all calls for your organization and determine the total number of calls, you would typically use the calls endpoint with pagination parameters. If the endpoint supports pagination, you can make a request to get the first batch of calls and look for a response header or a field in the response body that indicates the total number of calls or the presence of additional pages.
If the API provides a way to retrieve the total count directly, you would use that specific parameter or endpoint. However, if such a feature is not documented or available, you may need to iterate through the paginated results, fetching batches of calls until you retrieve all records.
To assist you further, I would need to know if the API provides any specific parameters for pagination or a total count. If you have access to the API documentation, please check for any such features. If not, you can reach out to the support team for more information on how to retrieve the total number of calls.
Would you like me to guide you on how to iterate through paginated results, or do you need assistance with something else?