Brevo helps you grow your business. Build customer relationships across email, SMS, chat, and more. Use the tools you need, when you need them.
Send transactional email. See the docs for more information.
The Brevo API lets you automate and integrate your user and access management tasks right within Pipedream. With Brevo's API, you can manage users, groups, permissions, and more, streamlining how you control access to your resources. By crafting workflows on Pipedream, you can connect Brevo with other apps to create custom, automated processes that suit your specific business needs.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
brevo: {
type: "app",
app: "brevo",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.brevo.com/v3/contacts`,
headers: {
"api-key": `${this.brevo.$auth.api_key}`,
},
})
},
})
The Filter API in Pipedream allows for real-time data processing within workflows. It's designed to evaluate data against predefined conditions, enabling workflows to branch or perform specific actions based on those conditions. This API is instrumental in creating efficient, targeted automations that respond dynamically to diverse datasets. Using the Filter API, you can refine streams of data, ensuring that subsequent steps in your Pipedream workflow only execute when the data meets your specified criteria. This cuts down on unnecessary processing and facilitates the creation of more intelligent, context-aware systems.
export default defineComponent({
async run({ steps, $ }) {
let condition = false
if (condition == false) {
$.flow.exit("Ending workflow early because the condition is false")
} else {
$.export("$summary", "Continuing workflow, since condition for ending was not met.")
}
},
})