Trigger workflows on an interval or cron schedule.
Estimates a reliability score based on ZeroBounce's AI for the provided email. See the documentation
Downloads the validation results for a file submitted using sendfile API. See the documentation
Performs email validation on all the addresses contained in a provided file. 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.
The ZeroBounce API provides email verification services that help improve email deliverability by removing invalid or risky email addresses from your lists. When integrated with Pipedream, you can automate workflows to clean your mailing lists, validate subscribers in real-time, and enrich your contacts. Pipedream's serverless platform facilitates the running of code that interacts with the ZeroBounce API to execute these tasks based on various triggers and actions from other integrated services.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zerobounce: {
type: "app",
app: "zerobounce",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.zerobounce.net/v2/getcredits`,
params: {
api_key: `${this.zerobounce.$auth.api_key}`,
},
})
},
})