Hello!
I would like to query metric data from some Webex meeting rooms, but there is a permission issue.
You can see the py query code and the result.
py code:
queryParams = {'workspaceId':workspaceId, 'metricName': 'temperature' }
response = requests.get( url = apiUrl, headers = httpHeaders, params = queryParams )
result
403
{'errors': [{'description': 'Forbidden'}],
'message': 'Forbidden',
'trackingId': 'ROUTERGW_0d453f07-c939-47a5-a732-1e2ebba1bd82'}
I can query other data, but it doesn't return metric data.
Does anyone know what permissions I need for this?
Thanks