Use Brevo with AI Agents

Brevo, formerly Sendinblue, is a SaaS solution for relationship marketing.
๐Ÿ”— Connect and Use Brevo
1. ๐Ÿ”‘ Connect your Brevo account
2. โœ… Select an action
3. ๐Ÿš€ Go live with the agent
What do you want to do?
Actions
Email Campaigns
Transactional emails
Contacts
SMS Campaigns
Transactional SMS
WhatsApp Campaigns
Senders
Domains
Webhooks
Reseller
Account
User
Process
Inbound Parsing
Master account
Companies
Deals
Tasks
Notes
Files
Conversations
Ecommerce
Event
Coupons
Transactional WhatsApp
External Feeds

API actions for Brevo for AI assitants/agents

Language
JS
PYTHON

Event

Create An Event

Create an event to track a contact's interaction.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.BREVO_CREATE_AN_EVENT])

Ecommerce

Return All Your Categories

The `/categories` endpoint supports pagination, sorting, and filtering for retrieving categories. It provides details like ID, name, URLs, and timestamps along with the total count, and handle
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.BREVO_RETURN_ALL_YOUR_CATEGORIES])

Create Update A Category

This endpoint facilitates the creation or update of ecommerce categories, requiring JSON details like ID for updates, and name for creation. Creation returns status 201 with the category's ID;
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.BREVO_CREATE_UPDATE_A_CATEGORY])

Get A Category Details

This Ecommerce endpoint retrieves details of a specific category by ID, including its name, creation and modification timestamps, and URL. Responses include successful details retrieval, bad r
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.BREVO_GET_A_CATEGORY_DETAILS])

Create Categories In Batch

This endpoint enables batch creation and optional update of e-commerce categories via JSON, requiring unique IDs for each. It reports counts of new and updated categories or provides error det
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.BREVO_CREATE_CATEGORIES_IN_BATCH])

Return All Your Products

This Ecommerce API allows for detailed product searches with filters (e.g., price, categories), and supports pagination. It offers thorough product information, including images and metadata.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.BREVO_RETURN_ALL_YOUR_PRODUCTS])

Create Update A Product

This endpoint facilitates creating or updating Ecommerce products, allowing POST of details like ID and price. It returns 201 for creation (including product ID) or 204 for updates, and a 400
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.BREVO_CREATE_UPDATE_A_PRODUCT])

Get A Product S Details

This Ecommerce endpoint allows fetching product details by ID, including its name, dates, images, and metadata. It supports GET requests, and provides error codes and messages for issues like
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.BREVO_GET_A_PRODUCT_S_DETAILS])

Create Products In Batch

The `/products/batch` endpoint allows for batch creation and updating of products in an ecommerce system. It accepts a JSON request body detailing product information, such as ID, name, and pr
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.BREVO_CREATE_PRODUCTS_IN_BATCH])

Coupons

Get All Your Coupon Collections

The `/couponCollections` endpoint provides access to all coupon collections, supporting pagination, sorting by creation date, and includes important details like ID, name, default coupon, crea
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.BREVO_GET_ALL_YOUR_COUPON_COLLECTIONS])

Create A Coupon Collection

Create a coupon collection by sending JSON with 'name' and 'defaultCoupon'. Success returns the new collection's UUID. Errors detailed for bad requests and unauthorized access.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.BREVO_CREATE_A_COUPON_COLLECTION])

Get A Coupon Collection By Id

Fetch a specific coupon collection's details by id, including name, creation date, and coupon metrics. Returns errors for bad requests, unauthorized access, or if not found.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.BREVO_GET_A_COUPON_COLLECTION_BY_ID])

Update A Coupon Collection By Id

This endpoint allows updating a coupon collection's default coupon by specifying its ID. Provide the ID in the path and updated values in the JSON body. Responses include success (200 with det
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.BREVO_UPDATE_A_COUPON_COLLECTION_BY_ID])

Create Coupons For A Coupon Collection

The '/coupons' POST endpoint enables coupon creation in collections, requiring 'collectionId' (UUIDv4) and 'coupons' array. It returns 204, 400, 401, 404 statuses based on the request's nature
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.BREVO_CREATE_COUPONS_FOR_A_COUPON_COLLECTION])

Transactional WhatsApp

Send A Whats App Message

This endpoint is used to send a WhatsApp message. <br/>(**The first message you send using the API must contain a Template ID. You must create a template on WhatsApp on the Brevo platform to f
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.BREVO_SEND_A_WHATS_APP_MESSAGE])

Get All Your Whats App Activity Unaggregated Events

This endpoint will show the unaggregated statistics for WhatsApp activity (30 days by default if `startDate` and `endDate` or `days` is not passed. The date range can not exceed 90 days)
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.BREVO_GET_ALL_YOUR_WHATS_APP_ACTIVITY_UNAGGREGATED_EVENTS])

External Feeds

Fetch All External Feeds

This endpoint can fetch all created external feeds.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.BREVO_FETCH_ALL_EXTERNAL_FEEDS])

Create An External Feed

This endpoint will create an external feed.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.BREVO_CREATE_AN_EXTERNAL_FEED])

Get An External Feed By Uuid

This endpoint will update an external feed.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.BREVO_GET_AN_EXTERNAL_FEED_BY_UUID])

Update An External Feed

This endpoint will update an external feed.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.BREVO_UPDATE_AN_EXTERNAL_FEED])

Delete An External Feed

This endpoint will delete an external feed.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.BREVO_DELETE_AN_EXTERNAL_FEED])

Frequently asked questions

What is Composio.dev?

Composio.dev is a platform for building AI applications, designed to make the process of developing AI solutions super easy and fun! It provides a comprehensive set of tools and libraries that simplify the process of developing AI solutions, allowing you to focus on the creative aspects of your project without getting bogged down by the technical details.

How does Composio.dev support Brevo?

Composio.dev seamlessly integrates with Brevo, allowing you to leverage its capabilities within the Composio.dev platform. You can utilize Brevo to call functions across various platforms, including Google, GitHub, and others, making it a breeze to incorporate different services into your AI applications. Additionally, it supports user authentication via OAuth2 and can work in conjunction with other popular frameworks like LangChain and CrewAI, giving you the flexibility to build truly innovative AI solutions.

What models can I use with Brevo?

With Brevo, you have access to a wide range of state-of-the-art language models, including GPT-4o (OpenAI), GPT-3.5 (OpenAI), GPT-4 (OpenAI), Claude (Anthropic), PaLM (Google), LLaMA and LLaMA 2 (Meta), Gemini, and many others. This flexibility allows you to choose the model that best suits your specific use case, whether you're building a chatbot, a content creation tool, or any other AI-powered application. You can experiment with different models and find the one that delivers the best performance for your project.

How can I integrate Brevo into my project?

Composio.dev provides a seamless integration for Brevo, making it super easy to incorporate this powerful framework into your projects. You can leverage the Composio.dev API to call functions from Brevo, allowing you to tap into its capabilities with just a few lines of code. The SDK is available in Python, JavaScript, and TypeScript, so you can work with your preferred programming language and integrate Brevo into your projects seamlessly.

What is the pricing for Brevo?

Brevo is completely free to use, with a generous free tier that allows up to 1000 requests per month. This makes it accessible for developers and organizations of all sizes to explore and experiment with this powerful tool without any upfront costs. Whether you're a student working on a personal project or a startup building the next big thing, you can get started with Brevo without worrying about breaking the bank.

What kind of authentication is supported for Brevo?

Brevo supports OAuth2 authentication, ensuring secure and authorized access to its functionalities. You can leverage the Composio.dev API to handle authentication and call functions from Brevo seamlessly. The SDK is available in Python, JavaScript, and TypeScript for your convenience, making it easy to integrate authentication into your projects and keep your users' data safe and secure.

Can I add Brevo to my project?

Absolutely! You can easily incorporate Brevo into your project by utilizing the Composio.dev API. This API allows you to call functions from Brevo, enabling you to leverage its capabilities within your application. The SDK is available in Python, JavaScript, and TypeScript to facilitate integration, so you can work with the language you're most comfortable with and add Brevo to your project with ease.

What is the accuracy of Brevo?

Brevo is designed to provide highly accurate and reliable results, ensuring that your AI applications perform at their best. The integration with Composio.dev ensures precise function calls, enabling you to build robust and powerful AI applications with confidence. Brevo's comprehensive framework and the ability to leverage state-of-the-art models ensure reliable and accurate outcomes for your AI development needs, whether you're working on a chatbot, a content creation tool, or any other AI-powered project.

What are some common use cases for Brevo?

Brevo can be used for a wide range of AI applications, making it a versatile tool for developers and creators alike. Some common use cases include natural language processing, text generation, question answering, sentiment analysis, and more. It's particularly useful for building chatbots, virtual assistants, content creation tools, and other AI-powered applications that can help you automate tasks, engage with users, and create compelling content. Whether you're working on a personal project or building a product for your startup, Brevo can help you bring your ideas to life.

How does Brevo handle data privacy and security?

Data privacy and security are crucial considerations when working with AI systems, and Brevo takes these issues seriously. It follows industry best practices and adheres to strict data protection regulations, ensuring that your data is kept safe and secure. Brevo provides robust security measures, such as encryption and access controls, to ensure the confidentiality and integrity of your data. You can rest assured that your sensitive information is protected when using Brevo for your AI development needs.
+ Integrate seamlessly with your agentic frameworks
Composio Works with All Shapes and SizesComposio Works with All Shapes and SizesComposio Works with All Shapes and SizesComposio Works with All Shapes and SizesComposio Works with All Shapes and Sizes
Building for AI across continents๐Ÿงช