Hi Will,
Sorry for the late reply, I tried using the link in incognito mode and used access_token={token} I got the same error: Whitelabel Error Page.
Here is my API response :
Content:{“code”:403,“message”:“You do not have permission.”}
ContentType:application/json;charset=UTF-8
Response URI:{https://zoom.us/v2/phone/voice_mails/download/DguydazmQ_aGyQtlRhMUpw}
StatusCode:Bad Request
IsSuccessful:false
C# code:
var client = new RestClient(download_url);
var request = new RestRequest(Method.GET);
request.AddHeader(“Authorization”, "Bearer " + AccessToken);
request.AddHeader(“Content-Type”, “application/json”);
var response = client.Execute(request);