I am trying to pull all of the devices from my account with:
https://api.zoom.us/v2/accounts/(accountID)/phone/devices
but I am getting:
{
“code”: 104,
“message”: “Invalid access token, does not contain scopes:[phone:master].”
}
When I use the bearer token I get the following back:
“token_type”: “bearer”,
“expires_in”: 3599,
“scope”: “phone:master”
}
I am running the test in python and not understanding why it doesn’t think my bearer token has phone:master when it does.