I Am using the Google Calender API to generate a Google Meet link, my problem is that the attendees need the host permission to access the Meet, I tried setting them as organizers but it doesnt seems to do anything, is there any parameter or something I can add so they can join whenever they want without needing permission?
const event = {
summary: "Meet",
description: `meeting `,
start: {
dateTime: startingTime,
},
end: {
dateTime: endingTime,
},
conferenceData: {
createRequest: {
requestId: random,
conferenceSolutionKey: { type: "hangoutsMeet" },
},
},
params: {
sendNotifications: true
},
attendees: [
{
email: EmailOne,
organizer: true},
{ email: EmailTwo,
organizer: true},
],
};
const response = calendar.events.insert({
calendarId: calendarId,
resource: event,
conferenceDataVersion: 1
});
Thank you in advance