with Instasent and Airmeet?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
instasent: {
type: "app",
app: "instasent",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.instasent.com/organization/account`,
headers: {
Authorization: `Bearer ${this.instasent.$auth.api_token}`,
"accept": `application/json`,
},
})
},
})
The Airmeet API enables you to automate and manage virtual events with ease. By integrating with Pipedream, you can create custom workflows that interact with the Airmeet platform, such as attendee management, event scheduling, and real-time updates. Utilize the API to sync event data, send notifications, and connect with other services for a comprehensive event automation solution.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airmeet: {
type: "app",
app: "airmeet",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.airmeet.$auth.region}.airmeet.com/prod/airmeets`,
headers: {
"X-Airmeet-Access-Token": `${this.airmeet.$auth.oauth_access_token}`,
},
})
},
})