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 new comment is created in DevRev.
Emit new event when a new work item is created in DevRev.
Emit new event each time a record is added, updated, or deleted in an Airtable table. See the documentation
Creates a new comment on a work item in DevRev. 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 DevRev API bridges the gap between developers and customers, enabling teams to interact with customer data, handle support issues, and integrate with various development workflows. Within Pipedream, you can wield this API to automate tasks like syncing customer feedback with your issue trackers, updating CRM records, or triggering custom notifications based on customer interactions.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
devrev: {
type: "app",
app: "devrev",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.devrev.ai/dev-users.self`,
headers: {
"Authorization": `${this.devrev.$auth.personal_access_token}`,
},
})
},
})