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 an event with subscribed event source triggered, See the docs
Emit new event when an issue is created. Note that Jira supports only one webhook, if more sources are needed please use New Event
source and select multiple events.
Emit new event when an issue is deleted. Note that Jira supports only one webhook, if more sources are needed please use New Event
source and select multiple events.
Create a copy of the specified file. See the documentation for more information
Adds multiple attachments to an issue, See the docs
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 Jira API opens up a world of possibilities for automating project management tasks, syncing with other tools, and enhancing data visibility. With Pipedream's integration, you can streamline issue tracking by automatically creating, updating, and searching for issues in Jira, as well as managing projects, sprints, users, and more. This integration not only saves time but also ensures real-time data flow across various platforms, keeping teams in sync and projects on track.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
jira: {
type: "app",
app: "jira",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.atlassian.com/me`,
headers: {
Authorization: `Bearer ${this.jira.$auth.oauth_access_token}`,
},
})
},
})