Airtable is a low-code platform to build next-gen apps. Move beyond rigid tools, operationalize your critical data, and reimagine workflows with AI.
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 Uplisting API allows property managers and hosts to automate and integrate their listing and booking management across various platforms. With this API on Pipedream, you can streamline operations like syncing bookings, updating listings, and managing guests' stays. Uplisting on Pipedream provides a canvas for building workflows that connect with other apps for a cohesive property management system, simplifying tasks such as communication, scheduling, and analytics.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
uplisting: {
type: "app",
app: "uplisting",
}
},
async run({steps, $}) {
const base64_encoded_api_key = Buffer.from(this.uplisting.$auth.api_key).toString('base64');
return await axios($, {
url: `https://connect.uplisting.io/users/me`,
headers: {
"Content-Type": `application/json`,
"Authorization": `Basic ${base64_encoded_api_key}`,
},
})
},
})