Find popular learning activities near you, courses to join, or let yourself be inspired.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
navigatr: {
type: "app",
app: "navigatr",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.navigatr.app/v1/user_detail/0`, //returns current user (user id == 0)
headers: {
Authorization: `Bearer ${this.navigatr.$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.