I want to make an api call to get history data for zoom call logs

I want to make an API call to get history data for zoom call logs
I am using the below two API links to make a call

Hi @shteotia, it appears that there might be an issue with how you are passing the parameters in your query.

  1. From Parameter (Start Time and Date):
  • Format: Must be in either yyyy-mm-dd or yyyy-MM-dd’T’HH:mm:ss’Z’ format.
  • Note: The date range defined by the from and to parameters should encompass a month, as the response will only include data for one month. This month should be within the last six months. If the from parameter is not specified, the default is to return data from the past 24 hours.
  • Example: 2020-10-31
  1. To Parameter (End Time and Date):
  • Requirement: This is required only if the from parameter is set.
  • Format: Must be in the same format as the from parameter, either yyyy-mm-dd or yyyy-MM-dd’T’HH:mm:ss’Z’.
  • Example: 2021-12-31

Please ensure that the parameters are specified correctly as per the above guidelines.