Platform for secure content management, workflow, and collaboration
Emit new event when an event with subscribed event source triggered on a target, See the docs
Downloads a file from Box to your workflow's /tmp
directory. See the documentation
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
Searches for files, folders, web links, and shared files across the users content or across the entire enterprise. See the docs here.
With the Box API, you can build applications that:
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}`,
},
})
},
})
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})