import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
meetgeek: {
type: "app",
app: "meetgeek",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.meetgeek.$auth.region}.meetgeek.ai/v1/teams`,
headers: {
Authorization: `Bearer ${this.meetgeek.$auth.api_key}`,
},
})
},
})
MeetGeek uses API keys for authentication. When you connect your MeetGeek account, Pipedream securely stores the keys so you can easily authenticate to MeetGeek APIs in both code and no-code steps.