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
Searches for files, folders, web links, and shared files across the users content or across the entire enterprise. See the docs here.
Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.
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}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})