Airtable is a low-code platform to build next-gen apps. Move beyond rigid tools, operationalize your critical data, and reimagine workflows with AI.
Emit new event when a transaction occurs
Emit new event each time a record is added, updated, or deleted in an Airtable table. See the documentation
Emit new event for each new or modified record in a table
Create a requisition link and id to be used in other Nordigen actions. See the docs
Delete requisition and its end user agreement. See the docs
Create one or more records in a table by passing an array of objects containing field names and values as key/value pairs. 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}`,
},
})
},
})
The GoCardless Bank Account Data API furnishes you with the ability to access enriched banking data, enabling the creation of financial insights and streamlining customer verification processes. By integrating this API with Pipedream, you can automate various tasks involving bank account transactions and customer data analysis. For instance, you might set up workflows to monitor transactions for accounting purposes, verify customer account details for KYC compliance, or aggregate financial data to provide personalized financial advice.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
nordigen: {
type: "app",
app: "nordigen",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://bankaccountdata.gocardless.com/api/v2/institutions/`,
headers: {
Authorization: `Bearer ${this.nordigen.$auth.oauth_access_token}`,
"accept": `application/json`,
},
})
},
})