with Airtable and Insighto.ai?
Emit new event when a new contact is created in Insighto AI. See the documentation
Emit new event when a field is created in the selected table. See the documentation
Emit new event when a field is created or updated in the selected table
Emit new event for each new or modified record in a table or view
Emit new event for each new or modified record in a view
Adds a text blob into an existing data source. See the documentation
Creates a new contact within the system. See the documentation
Create one or more records in a table in a single operation with an array. See the documentation
Airtable (OAuth) API on Pipedream allows you to manipulate and leverage your Airtable data in a myriad of powerful ways. Sync data between Airtable and other apps, trigger workflows on updates, or process bulk data operations asynchronously. By using Airtable's structured databases with Pipedream's serverless platform, you can craft custom automation solutions, integrate with other services seamlessly, and streamline complex data processes.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { airtable_oauth: { type: "app", app: "airtable_oauth", } }, async run({steps, $}) { return await axios($, { url: `https://api.airtable.com/v0/meta/whoami`, headers: { Authorization: `Bearer ${this.airtable_oauth.$auth.oauth_access_token}`, }, }) }, }) Insighto.ai offers a powerful API for tapping into advanced analytics and AI capabilities. With Insighto.ai, you can enrich your business data with AI-driven insights, perform sentiment analysis, and automate responses based on customer interaction patterns. Leveraging this API on Pipedream allows you to integrate these capabilities seamlessly with other apps to create dynamic, data-driven workflows that can automate processes, enhance customer interactions, and drive decision-making with real-time analytics.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { insighto_ai: { type: "app", app: "insighto_ai", } }, async run({steps, $}) { return await axios($, { url: `https://api.insighto.ai/api/v1/user`, headers: { "accept": `application/json`, }, params: { api_key: `${this.insighto_ai.$auth.api_key}`, }, }) }, })