with Aidbase and Whautomate?
Emit new event when an appointment is cancelled in Whautomate.
Emit new event when a new knowledge item is added to a chatbot.
Emit new event when a new appointment is scheduled in Whautomate.
Emit new event when a new knowledge item is added to an email inbox.
Emit new event when a new client is created in Whautomate.
Add a new question to a FAQ in Airbase. See the documentation
Assign one or more tags to an existing contact. See the documentation
Add a video as a piece of knowledge to your Aidbase account. See the documentation
Create a new contact associated with a WhatsApp number. See the documentation
Create a new frequently asked questions (FAQ) list on your Aidbase account. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
aidbase: {
type: "app",
app: "aidbase",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.aidbase.ai/v1/status`,
headers: {
Authorization: `Bearer ${this.aidbase.$auth.api_key}`,
"accept": `application/json`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
whautomate: {
type: "app",
app: "whautomate",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.whautomate.$auth.api_host}/v1/contacts`,
headers: {
"x-api-key": `${this.whautomate.$auth.api_key}`,
},
})
},
})