with Google Meet and Planday?
Creates a new event in Google Calendar with a Google Meet link. See the documentation
The 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}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
planday: {
type: "app",
app: "planday",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://openapi.planday.com/hr/v1/Departments`,
headers: {
Authorization: `Bearer ${this.planday.$auth.oauth_access_token}`,
"accept": `application/json`,
},
})
},
})