To create a Google Meet, you'll need to use the Google Calendar API; here's an example of how to accomplish it with code.
// You already have the user emails from your NodeJS app
const attendeesEmails = [
{ 'email': 'user1@example.com' },
{ 'email': 'user2@example.com' }
];
const event = {
summary: 'Coding class',
location: 'Virtual / Google Meet',
description: 'Learn how to code with Javascript',
start: {
dateTime: '2022-01-18T09:00:00-07:00',
timeZone: 'America/Los_Angeles',
},
end: {
dateTime: '2022-01-18T09:30:00-07:00',
timeZone: 'America/Los_Angeles',
},
attendees: attendeesEmails,
reminders: {
useDefault: false,
overrides: [
{ method: 'email', 'minutes': 24 * 60 },
{ method: 'popup', 'minutes': 10 },
],
},
conferenceData: {
createRequest: {
conferenceSolutionKey: {
type: 'hangoutsMeet'
},
requestId: 'coding-calendar-demo'
}
},
};