Real-time meetings by Google. Using your browser, share your video, desktop, and presentations with teammates and customers.
Go to siteThe Google Meet API allows developers to automate aspects of the video conferencing service, like creating and managing meetings. With Pipedream, these capabilities can be leveraged to build custom workflows, integrating Google Meet with other services to streamline scheduling, notification, and management processes. For instance, you can automate the creation of meetings in response to calendar events, sync meeting details with a CRM, or initiate follow-up actions once a meeting concludes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
google_meet: {
type: "app",
app: "google_meet",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.googleapis.com/oauth2/v1/userinfo`,
headers: {
Authorization: `Bearer ${this.google_meet.$auth.oauth_access_token}`,
},
})
},
})
Automated Meeting Scheduler: Sync Google Calendar events with Google Meet to automatically create meetings for new calendar events. Use Pipedream to listen for new events on a Google Calendar and then use the Google Meet API to set up corresponding video conferences, sending invites to participants.
Meeting Minute Distribution: After a meeting ends, use Pipedream to trigger a workflow that sends out the meeting recording and summary to all participants via email. This can be done by integrating Google Meet with an email app like Gmail, capturing the end of meeting event, and distributing the necessary follow-up materials.
CRM Integration for Customer Calls: When a new meeting is scheduled with a customer, use Pipedream to log the event to your CRM, like Salesforce. This workflow can automatically create a new activity or log within the CRM whenever a Google Meet invite is sent, ensuring sales teams have up-to-date information on customer interactions.
Creates a new event in Google Calendar with a Google Meet link. See the documentation
Google Meet uses OAuth authentication. When you connect your Google Meet account, Pipedream will open a popup window where you can sign into Google Meet and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Google Meet API.
Pipedream requests the following authorization scopes when you connect your account:
email
profile
https://www.googleapis.com/auth/calendar.events
https://www.googleapis.com/auth/calendar.readonly
https://www.googleapis.com/auth/calendar.settings.readonly
GET
https://accounts.google.com/o/oauth2/auth
?
client_id={{oauth.client_id}}
&
redirect_uri={{oauth.redirect_uri}}
&
state={{oauth.state}}
&
response_type=code
&
scope={{oauth.space_separated_scopes}}
&
prompt=consent
&
access_type=offline
POST
https://oauth2.googleapis.com/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
redirect_uri={{oauth.redirect_uri}}
&
grant_type=authorization_code
&
code={{oauth.code}}
POST
https://oauth2.googleapis.com/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
grant_type=refresh_token
&
refresh_token={{oauth.refresh_token}}