Brevo helps you grow your business. Build customer relationships across email, SMS, chat, and more. Use the tools you need, when you need them.
Go to siteThe 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}`,
},
})
},
})
Automated User Provisioning: Use the Brevo API to create a workflow that automatically adds new employees to specific groups and grants permissions when they're added to your HR system, ensuring a smooth onboarding experience.
Dynamic Access Control: Build a Pipedream workflow to adjust user permissions in real-time based on activity logs or events from security systems. This may involve revoking access when suspicious behavior is detected, or granting temporary access when required.
User Audit and Compliance Reports: Leverage the Brevo API on Pipedream to generate regular user access reports. Combine data from Brevo with other services, like a database or logging tool, to create comprehensive compliance documentation.
Send transactional email. See the docs for more information.
Brevo uses API keys for authentication. When you connect your Brevo account, Pipedream securely stores the keys so you can easily authenticate to Brevo APIs in both code and no-code steps.