with Bitport and Airtable?
Emit new event when a new file is added to a project in Bitport. See the documentation
Emit new event when a new media is added to a project in Bitport. See the documentation
Emit new event when a field is created in the selected table. See the documentation
Emit new event when a field is created or updated in the selected table
Emit new event for each new or modified record in a table or view
Create one or more records in a table in a single operation with an array. See the documentation
Searches folders and files in the cloud and sorts them by name. See the documentation
The Bitport API allows you to integrate cloud torrent downloads into your apps and workflows. With Bitport, you can fetch torrents to a secure cloud location and stream them online. This opens up possibilities for automating downloads, orchestrating media collection, or even building custom alerts for completed torrent downloads. On Pipedream, you can connect the Bitport API to various other services to create powerful automation workflows. For instance, you could trigger downloads with webhooks, organize files with cloud storage services, or send notifications through communication platforms.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { bitport: { type: "app", app: "bitport", } }, async run({steps, $}) { return await axios($, { url: `https://api.bitport.io/v2/me`, headers: { Authorization: `Bearer ${this.bitport.$auth.oauth_access_token}`, }, }) }, }) 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}`, }, }) }, })