Schedule

Trigger workflows on an interval or cron schedule.

Integrate the Schedule API with the Box API

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

Download File with Box API on Custom Interval from Schedule API
Schedule + Box
 
Try it
Download File with Box API on Daily schedule from Schedule API
Schedule + Box
 
Try it
Download File with Box API on Monthly Schedule from Schedule API
Schedule + Box
 
Try it
Download File with Box API on Weekly schedule from Schedule API
Schedule + Box
 
Try it
Search Content with Box API on Custom Interval from Schedule API
Schedule + Box
 
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
New Event from the Box API

Emit new event when an event with subscribed event source triggered on a target. See the documentation

 
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 File Event from the Box API

Emit new event when a new file uploaded on a target. See the documentation

 
Try it
Download File with the Box API

Downloads a file from Box to your workflow's /tmp directory. See the documentation

 
Try it
Search Content with the Box API

Searches for files, folders, web links, and shared files across the users content or across the entire enterprise. See the documentation.

 
Try it
Upload a File with the Box API

Uploads a small file to Box. See the documentation.

 
Try it
Upload File Version with the Box API

Update a file's content. 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 Box

The Box API offers a playground for enhancing content management and collaboration within your cloud storage. With Pipedream, you can orchestrate Box's functionality to automate document handling, streamline approval flows, sync files across apps, and trigger actions based on file events. Think of Pipedream as the glue that allows you to connect Box with your tech stack, triggering workflows with new file uploads, comments, or when sharing settings change, to enhance productivity and minimize manual labor.

Connect Box

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: {
    box: {
      type: "app",
      app: "box",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.box.com/2.0/users/me`,
      headers: {
        Authorization: `Bearer ${this.box.$auth.oauth_access_token}`,
      },
    })
  },
})