import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
meetstream_ai: {
type: "app",
app: "meetstream_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api-meetstream-tst-hack.meetstream.ai/api/v1/bots/${this.meetstream_ai.$auth.bot_id}/status`,
headers: {
"authorization": `Token ${this.meetstream_ai.$auth.api_key}`,
},
})
},
})
Meetstream AI uses API keys for authentication. When you connect your Meetstream AI account, Pipedream securely stores the keys so you can easily authenticate to Meetstream AI APIs in both code and no-code steps.