We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 453786b commit caf4383Copy full SHA for caf4383
Bandwidth.Standard/Voice/Controllers/APIController.cs
@@ -919,7 +919,7 @@ public async Task<ApiResponse<dynamic>> GetDownloadCallRecordingAsync(
919
// handle errors defined at the API level.
920
this.ValidateResponse(response, context);
921
922
- var result = ApiHelper.JsonDeserialize<dynamic>(response.Body);
+ var result = response.RawBody;
923
ApiResponse<dynamic> apiResponse = new ApiResponse<dynamic>(response.StatusCode, response.Headers, result);
924
return apiResponse;
925
}
@@ -2420,4 +2420,4 @@ public async Task<ApiResponse<dynamic>> GetDownloadConferenceRecordingAsync(
2420
2421
2422
2423
-}
+}
0 commit comments