Google Drive is a file storage and synchronization service which allows you to create and share your work online, and access your documents from anywhere.
Watches for changes to specific files, emitting an event when a change is made to one of those files. To watch for changes to shared drive files, use the Changes to Specific Files (Shared Drive) source instead.
Watches for changes to specific files in a shared drive, emitting an event when a change is made to one of those files
Emit new event when a new file is added in your linked Google Drive
Emit new event when a comment is created or modified in the selected file
Submit a new automated transcription order using a external link that contains the media. See docs here.
Submit a new caption order using a external link that contains the media. See docs here.
Create a copy of the specified file. See the documentation for more information
Submit a new transcription order using a external link that contains the media. See docs here.
Create a new empty folder. See the documentation for more information
The Google Drive API on Pipedream allows you to automate various file management tasks, such as creating, reading, updating, and deleting files within your Google Drive. You can also share files, manage permissions, and monitor changes to files and folders. This opens up possibilities for creating workflows that seamlessly integrate with other apps and services, streamlining document handling, backup processes, and collaborative workflows.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
google_drive: {
type: "app",
app: "google_drive",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.googleapis.com/drive/v3/about?fields=user`,
headers: {
Authorization: `Bearer ${this.google_drive.$auth.oauth_access_token}`,
},
})
},
})
The Rev API offers transcription, caption, and translation services, which you can integrate into automated workflows on Pipedream. Imagine automatically transcribing recorded meetings, generating captions for user-generated video content, or translating documents on-the-fly. With Rev, you can streamline media production, enhance accessibility, and break down language barriers, all while maintaining high accuracy.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
rev: {
type: "app",
app: "rev",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.rev.com/api/v1/orders`,
headers: {
"Authorization": `Rev ${this.rev.$auth.client_api_key}:${this.rev.$auth.user_api_key}`,
},
})
},
})