Schedule

Trigger workflows on an interval or cron schedule.

Integrate the Schedule API with the Vimeo API

Setup the Schedule API trigger to run a workflow which integrates with the Vimeo API. Pipedream's integration platform allows you to integrate Schedule and Vimeo remarkably fast. Free for developers.

Add Video To Album with Vimeo API on Custom Interval from Schedule API
Schedule + Vimeo
 
Try it
Add Video To Album with Vimeo API on Daily schedule from Schedule API
Schedule + Vimeo
 
Try it
Add Video To Album with Vimeo API on Monthly Schedule from Schedule API
Schedule + Vimeo
 
Try it
Add Video To Album with Vimeo API on Weekly schedule from Schedule API
Schedule + Vimeo
 
Try it
Delete Video with Vimeo API on Custom Interval from Schedule API
Schedule + Vimeo
 
Try it
Custom Interval from the Schedule API

Trigger your workflow every N hours, minutes or seconds.

 
Try it
Daily schedule from the Schedule API

Trigger your workflow every day.

 
Try it
Monthly Schedule from the Schedule API

Trigger your workflow on one or more days each month at a specific time (with timezone support).

 
Try it
New Video by Search from the Vimeo API

Emit new event each time a new video matching the search terms is added.

 
Try it
Weekly schedule from the Schedule API

Trigger your workflow on one or more days each week at a specific time (with timezone support).

 
Try it
Add Video To Album with the Vimeo API

Adds an existing video to a user's album/showcase on Vimeo. See the documentation

 
Try it
Delete Video with the Vimeo API

Permanently deletes a video from the user's Vimeo account. This action can't be undone. See the documentation

 
Try it
Upload Video with the Vimeo API

Uploads a video to the user's Vimeo account. Ensure you have enough storage quota on your account. See the documentation

 
Try it

Overview of Schedule

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.

Overview of Vimeo

The Vimeo API equips you to interact programmatically with the Vimeo platform, allowing you to manage videos, users, and albums. With Pipedream, you can choreograph this functionality into automation, integrating Vimeo's capabilities with countless other services. Pipedream's serverless platform streamlines the process of setting up event-driven workflows, custom reactions to video uploads, or even coordinating marketing efforts that hinge on your video content.

Connect Vimeo

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    vimeo: {
      type: "app",
      app: "vimeo",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.vimeo.com/me`,
      headers: {
        Authorization: `Bearer ${this.vimeo.$auth.oauth_access_token}`,
      },
    })
  },
})