Trigger workflows on an interval or cron schedule.
Emit new event when a new contact is added. See the documentation
Trigger your workflow on one or more days each month at a specific time (with timezone support).
Trigger your workflow on one or more days each week at a specific time (with timezone support).
Finds a business email address using a full name and a website domain. See the documentation
Checks the deliverability of a specified email address. 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: {
nioleads: {
type: "app",
app: "nioleads",
}
},
async run({steps, $}) {
const data = {
"email": `support@pipedream.com`,
}
return await axios($, {
method: "post",
url: `https://api.nioleads.com/v1/openapi/verify_email`,
headers: {
Authorization: `Bearer ${this.nioleads.$auth.api_key}`,
"Accept": `application/json`,
"Content-Type": `application/json`,
},
data,
})
},
})