with Schedule and Nuclino?
Emit new event when a new item or collection is created in Nuclino.
Trigger your workflow on one or more days each month at a specific time (with timezone support).
Emit new event when an item or collection is updated in Nuclino.
Create a new item or collection in Nuclino. See the documentation
Search for items or collections in Nuclino. See the documentation
Update an existing item or collection in Nuclino. See the documentation
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.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
nuclino: {
type: "app",
app: "nuclino",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.nuclino.com/v0/teams`,
headers: {
"authorization": `${this.nuclino.$auth.api_key}`,
},
})
},
})