Unable to update host key

Description
Unable to update host key from OAuth User-Level app after most recent (June 28) update

Error

{
“code”: 200,
“message”: “No permission.”
}

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

Which Endpoint/s?

/v2/users/me

How To Reproduce (If applicable)

var client = new RestClient(“https://api.zoom.us/v2/users/me”);
var request = new RestRequest(Method.PATCH);
request.AddHeader(“content-type”, “application/json”);
request.AddHeader(“authorization”, “Bearer {ACCESS_TOKEN_HERE}”);
request.AddParameter(“application/json”, “{\“host_key\”:\“555666\”}”, ParameterType.RequestBody);
IRestResponse response = client.Execute(request);

Additional context
The function was fine before June 28 update.
The same access token is used with no issue in other API methods.
Same response when test request is used in the bottom of https://marketplace.zoom.us/docs/api-reference/zoom-api/users/userupdate

Hey @ozkar,

I see you have a Free Basic account, to use the Host Key feature, you need at least a Pro Account.

Make sure the user who you are trying to update their host key for has at least a Pro Account.

Thanks,
Tommy