Delete Meeting API - Status Code 200

Description
When sending the request to delete the meeting, the status code 200 is returned, which is not documented in the API. The meeting is not deleted.

Error
The meeting is not deleted.

Which App Type (OAuth / Chatbot / JWT / Webhook)?
OAuth.

Which Endpoint/s?
DELETE # /meetings/{meetingId}

How To Reproduce (If applicable)
Steps to reproduce the behavior:
using (var client = new HttpClient())
{
client.BaseAddress = new Uri(β€œhttps://api.zoom.us/”);
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue(β€œBearer”, token);
HttpResponseMessage response = await client.DeleteAsync(β€œv2/users/meetings/” + meetingId);
result = response.IsSuccessStatusCode;
response.Dispose();
}

Result:
IsSuccessStatusCode = true
StatusCode = 200
Meeting is not deleted

1 Like

Error identified.
Sent: β€œβ€¦/v2/users/meetings/”
Correct is: β€œβ€¦/v2/meetings/”

Suggestion to add format error return (bad request)

2 Likes

Glad you resolved your issue! :slight_smile:

We will work that error message being more clear.

Thanks,
Tommy