Hi
if I use the api https://webexapis.com/v1/rooms/ using postman
it sends me the following error messages:
{
"message": "Could not find a room with provided ID.",
"errors": [
{
"description": "Could not find a room with provided ID."
}
],
"trackingId": "ROUTER_63E52FEE-8DA2-01BB-0123-0AFE0BC20123"
}
using the python code it gives me the correct roomid
accesstoken = "Bearer " + Token
api = CiscoSparkAPI(Token)
rooms = api.rooms.list()