with Vapi and AITable.ai?
Create a datasheet in the specified space. See the documentation
Create a new field in the specified datasheet. See the documentation
Updates the configuration settings for a specific assistant. See the documentation
Delete a field in the specified datasheet. See the documentation
The Vapi API delivers voice automation capabilities, letting you build powerful voice response systems. With Vapi, you can automate calls, send voice messages, and create dynamic interactions through speech recognition and text-to-speech. Pipedream's serverless platform allows you to integrate Vapi's API with numerous other services to automate workflows, react to events, and orchestrate complex voice-enabled processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
vapi: {
type: "app",
app: "vapi",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.vapi.ai/call`,
headers: {
Authorization: `Bearer ${this.vapi.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
aitable_ai: {
type: "app",
app: "aitable_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://aitable.ai/fusion/v1/datasheets/${this.aitable_ai.$auth.datasheet_id}/records`,
headers: {
Authorization: `Bearer ${this.aitable_ai.$auth.api_token}`,
},
})
},
})