matt
(Matt)
July 16, 2019, 10:38pm
1
According to the documentation I need only meeting:write:admin: and
meeting:write` to edit this field.
Reproduce, json encoded PATCH
request sent to `https://api.zoom.us/v2/users/me/meetings/meeting_id
Body is
{
"settings": {
"alternate_hosts": "persons_email_in_account"
}
}
I receive (forgive me for not json decoding it) "{\"code\":4700,\"message\":\"Invalid access token, does not contain scopes: [user:write:admin, user:write]\"}"
with the status code of 400.
matt
(Matt)
July 16, 2019, 10:46pm
2
Update, turns out the url should be https://api.zoom.us/v2/meetings/id
. This is instead a bug with an invalid url not returning the proper 404 error.
tommy
(Tommy Gaessler)
July 16, 2019, 10:50pm
3
Hey @matt ,
True that https://api.zoom.us/v2/users/me/meetings/meeting_id
is not a valid API endpoint. I will get that error message fixed, thank you.
Does the PATCH
to https://api.zoom.us/v2/meetings/id
work for you?
matt
(Matt)
July 16, 2019, 11:07pm
4
Yep! Thank you for double checking
1 Like
tommy
(Tommy Gaessler)
July 17, 2019, 3:27pm
5
You are welcome! Happy to help!