Secure encrypted cloud storage
Trigger your workflow on one or more days each month at a specific time (with timezone support).
Trigger your workflow on one or more days each week at a specific time (with timezone support).
Emit new event when a file is created or modified in the specified folder.
The pCloud API allows for direct interaction with your pCloud account, providing access to files and folders within your cloud storage. With Pipedream, you can automate file management tasks such as uploading, downloading, and synchronizing files. Additionally, you can create workflows to organize your cloud storage, share files with team members, or back up important data from various sources.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pcloud: {
type: "app",
app: "pcloud",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.pcloud.$auth.hostname}/userinfo`,
headers: {
Authorization: `Bearer ${this.pcloud.$auth.oauth_access_token}`,
},
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.