Get meeting reports API return 200 status code but with empty response body

Using this template helps us debug your issues more effectively :slight_smile:

Description
I am accessing this API using JWT authorization
Get meeting reports API return a 200 status code, but response body is an empty string

Error
Get meeting reports API return a 200 status code, but response body is an empty string

Which App Type (OAuth / Chatbot / JWT / Webhook)?
I am using JWT, the end point API I am using is
/users/{userid}/report/user/{userid}/meetings

Which Endpoint/s?
/users/{userid}/report/user/{userid}/meetings

How To Reproduce (If applicable)
Steps to reproduce the behavior:
URL = https://api.zoom.us/v2/users/{userid}/report/user/{userid}/meetings
header = {“Authorization”: “Bearer {jwt}”, “Content-Type”: “application/json”}
params = {“from”: “2021-06-01”, “to”: “2021-06-30”}
response status code = 200
response body = ‘’

Screenshots (If applicable)

Additional context
I was able to perform list meeting API and managed to get result back without problem, so at least I know that my jwt is working :grin: .

Hey @gbc.cc,

Thanks for reaching out about this—it looks like there’s an issue with your Request URL. You have the following:
https://api.zoom.us/v2/users/{userid}/report/user/{userid}/meetings

But please see the correct format here:

Please try the following:
https://api.zoom.us/v2/report/users/{userid}/meetings

Thanks!
Will

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.