The open-source unified API.
The Nango API is a bridge for integrating with SaaS apps, smoothing out authentication and API call complexities. On Pipedream, you can harness Nango to automate interactions between various services without getting bogged down by the nuances of OAuth flows or API intricacies. Use Nango to authenticate once, and let Pipedream workflows handle the rest, executing tasks, syncing data, and triggering actions across apps efficiently.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
nango: {
type: "app",
app: "nango",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.nango.dev/config `,
headers: {
Authorization: `Bearer ${this.nango.$auth.nango_secret_key}`,
},
})
},
})
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.