Before Creating a New Topic:
If you’re experiencing unexpected API/Zoom API Events (webhooks) behavior please search the forum with relevant keywords (e.x. error message) and follow the guidance outlined in those posts. Please also leverage the following support links:
- Zoom Developer Changelog for Dev Product Changes: https://marketplace.zoom.us/docs/guides/stay-up-to-date/changelog/
- General Troubleshooting: https://devsupport.zoom.us/hc/en-us
- To Submit a Ticket for Unexpected API/Zoom API Events Behavior: Official Zoom Support | Help Center
- For General & Integrations Related Guidance: https://community.zoom.com/
- For Troubleshooting Webhooks: Guide: "We Are Not Receiving Webhooks As Expected" -- Here's What to Do! - #2
Format Your New Topic as Follows:
API Endpoint(s) and/or Zoom API Event(s)
Link the API endpoint(s) and/orZoom API Event(s) you’re working with to help give context.
https://api.zoom.us/v2/contact_center/teams
Description
Details on your question, workflow or the problem you’re trying to solve.
the List Teams API return success code , but didn’t return any data, is there any permission or setup is needed to list temas?
Error?
The full error message or issue you are running into, where applicable.
return status code 200, but there is no data return
How To Reproduce
this is the code and result
access_token=get_access_token()
url=“https://api.zoom.us/v2/contact_center/teams”
response = requests.get(url, headers={“Authorization”: "Bearer " + access_token})
print(response.status_code)
print(response.json())
return:
200
{‘next_page_token’: ‘’, ‘page_size’: 30, ‘total_records’: 0}
‘x-zm-trackingid’: ‘WEB_7d5f63a3c2f12d01c5cff2e2f856b8e7’