Showing the Message Unable to Connect Cloud Server When i am start the Cloud recording using API

I am Using the API patch /live_meetings/{meetingId}/events When I am Starting the Recording the Message is Shown Unable to Connect Cloud Server
Capture

@sdc.pratik.ugile which SDK is this?

Can you provide steps to reproduce?

I am Using Zoom App SDK.
I am sending the Patch request to Start the recording
using (HttpClient httpClient = new HttpClient())
{
string MeetingID = MeetingID ;
var requestBody = new
{
method = “recording.start”
};
HttpRequestMessage request = new HttpRequestMessage
{
Method = new HttpMethod(“PATCH”),
RequestUri = new Uri($“https://api.zoom.us/v2/live_meetings/{MeetingID}/events”),
};
request.Headers.Add(“Authorization”, "Bearer " + Session[“Token”]);
request.Content = new StringContent(JsonConvert.SerializeObject(requestBody), Encoding.UTF8, “application/json”);
HttpResponseMessage httpResponseMessage = httpClient.SendAsync(request).Result;
if (httpResponseMessage.StatusCode == System.Net.HttpStatusCode.Accepted)
{
httpResponseMessage.EnsureSuccessStatusCode();
string responseBody = httpResponseMessage.Content.ReadAsStringAsync().Result;
}
}
getting response of 202 Accepted, and showing a message in meeting is meeting has been recorded after a while the message is showing failed to connect the cloud server

I am currently facing a problem showing Message Unable to Connect Cloud Server.
Despite my efforts to troubleshoot and research possible solutions, I have been unable to resolve the issue. Therefore, I would greatly appreciate your guidance or any suggestions you may have on how to address this problem.

@sdc.pratik.ugile Are you seeing this only when attempting to enable recording with the SDK or even when you use the UI?

As a first test, you’ll want to ensure the body you send is properly formatted JSON. We have an example of the request body in our documentation here:

Let me know if that helps.