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 each time a record is added, updated, or deleted in an Airtable table. See the documentation
Emit new event for each new or modified field in a table
Emit new event for each new or modified record in a table
Emit new event for each new or modified record in a view
Summarize given text. The text can be provided as a string or as a file ID. See the documentation
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 TextCortex API enables automated creation of human-like text, making it a powerful tool for a variety of text generation tasks like drafting emails, creating content, or generating product descriptions. With Pipedream, you can integrate TextCortex into serverless workflows to harness AI writing assistance, trigger content creation based on events, or enhance data with generated text. The API's capability enhances automation and can be combined with other apps for more complex tasks.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
textcortex: {
type: "app",
app: "textcortex",
}
},
async run({steps, $}) {
const data = {
"mode": `voice_passive`,
"text": `The sky is blue.`,
}
return await axios($, {
method: "post",
url: `https://api.textcortex.com/v1/texts/rewritings`,
headers: {
Authorization: `Bearer ${this.textcortex.$auth.api_key}`,
"Content-Type": `application/json`,
},
data,
})
},
})