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 automation is published.
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 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
Change the category of a specific Idea. 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 UiPath Automation Hub API allows you to interact with the automation lifecycle management platform. With this API, you can create, manage, and deploy automation tasks using UiPath's comprehensive toolset. On Pipedream, leverage this API to kick off robotic process automation (RPA) workflows, synchronize automation initiatives with your project management tools, or even gather valuable insights on your automations' performance and impact.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
uipath_automation_hub: {
type: "app",
app: "uipath_automation_hub",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://automation-hub.uipath.com/api/v1/openapi/authinfo`,
headers: {
Authorization: `Bearer ${this.uipath_automation_hub.$auth.tenant_id}/${this.uipath_automation_hub.$auth.token}`,
"x-ah-openapi-auth": `openapi-token`,
"x-ah-openapi-app-key": `${this.uipath_automation_hub.$auth.app_key}`,
},
})
},
})