Using this template helps us debug your issues more effectively
Description
Hello, we have created an application that accepts a service that hosts users to register and participate in meetings that are open to others.
The problem we are currently having is that after successfully pre-creating the meeting, we need to create an invite link for the meeting, but the API responds that we don’t have the required permissions.
Error
{
"code": 4700,
"message": "Invalid access token, does not contain scopes: [meeting:write:master, meeting:master]."
}
Which App Type (OAuth / Chatbot / JWT / Webhook)?
APP Type: OAuth
Which Endpoint/s?
Create meeting’s invite links
https://api.zoom.us/v2/accounts/{accountId}/meetings/{meetingId}/invite_links
How To Reproduce (If applicable)
Steps to reproduce the behavior:
curl --location --request POST 'https://api.zoom.us/v2/accounts/pCLUF3mJQVK7F6MffaRWFw/meetings/95895222213/invite_links' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX' \
--header 'Cookie: _zm_chtaid=664; _zm_ctaid=9EBsMcfKRnCG72xopvqTbg.1644396133662.f3ad9c2699bd34da02a9006f9bbcaef2; _zm_page_auth=aw1_c_mWrRHD-rRDu9sinE-f6fRA; _zm_ssid=aw1_c_bKlqaXnqSWyNs5A51-NjCg; cred=1AFE1F3BE9A072CE9382BABB7DA590DE' \
--data-raw '{
"ttl": 7200,
"attendees": ["Jake"]
}'