with Sendspark and Meetstream AI?
Creates a new dynamic video campaign. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sendspark: {
type: "app",
app: "sendspark",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.sendspark.$auth.api_url}/v1/workspaces/${this.sendspark.$auth.workspace_id}/dynamics`,
headers: {
"x-api-key": `${this.sendspark.$auth.api_key}`,
"x-api-secret": `${this.sendspark.$auth.api_secret_key}`,
},
})
},
})
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}`,
},
})
},
})