Use Brevo with Llamaindex Python

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
Framework

Event

Create An Event

Create an event to track a contact's interaction.
from composio_llamaindex 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_llamaindex 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_llamaindex 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_llamaindex 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_llamaindex 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_llamaindex 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_llamaindex 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_llamaindex 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_llamaindex 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_llamaindex 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_llamaindex 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_llamaindex 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_llamaindex 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_llamaindex 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_llamaindex 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_llamaindex 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_llamaindex 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_llamaindex 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_llamaindex 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_llamaindex 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_llamaindex 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 cutting-edge framework for building AI applications, designed to make the process of developing AI solutions super easy and fun! It's a collection of powerful tools and libraries that simplify the process of creating AI applications, 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, making it a breeze to leverage its capabilities within the Composio.dev platform. You can use Brevo to call functions on various platforms like Google, GitHub, and others, allowing you to incorporate different services into your AI applications with ease. It also supports user login via OAuth2 and can work with other popular frameworks such as LangChain and CrewAI, giving you the flexibility to build truly innovative AI solutions.

What models can I use with Brevo and llamaindex_python?

When using Brevo and llamaindex_python, 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 with llamaindex_python?

Integrating Brevo with llamaindex_python is super easy with Composio.dev! You can use the Composio.dev API to call functions from both Brevo and llamaindex_python, allowing you to tap into their capabilities with just a few lines of code. The SDK is available in Python, JavaScript, and TypeScript, so you can work with the language you're most comfortable with and integrate these powerful tools into your projects seamlessly.

What is the pricing for Brevo and llamaindex_python?

Both Brevo and llamaindex_python are completely free to use, with a generous free tier that allows up to 1000 requests per month. This makes them accessible for developers and organizations of all sizes, whether you're a student working on a personal project or a startup building the next big thing. You can get started with these powerful tools without worrying about breaking the bank.

What kind of authentication is supported for Brevo and llamaindex_python?

Brevo and llamaindex_python support OAuth2 authentication, ensuring secure and authorized access to their functionalities. You can use the Composio.dev API to handle authentication and call functions from both Brevo and llamaindex_python 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 both Brevo and llamaindex_python, enabling you to leverage their 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 these powerful tools to your project with ease.

What is the accuracy of Brevo and llamaindex_python?

Brevo and llamaindex_python are 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. The 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 and llamaindex_python?

Brevo and llamaindex_python can be used for a wide range of AI applications, making them versatile tools for developers and creators alike. Some common use cases include natural language processing, text generation, question answering, sentiment analysis, and more. They're 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, these tools 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.

Can I customize Brevo and llamaindex_python for my specific needs?

Absolutely! Brevo and llamaindex_python are highly customizable and extensible, allowing you to tailor their functionality, models, and configurations to meet your specific requirements. Whether you're building a chatbot, a content creation tool, or any other AI-powered application, you can customize these tools to fit your unique needs. Additionally, Composio.dev provides a flexible platform for integrating and orchestrating various AI tools and services, enabling you to create custom AI solutions that are tailored to your project.

What kind of support and documentation is available for Brevo and llamaindex_python?

Brevo and llamaindex_python have comprehensive documentation and a supportive community, making it easy for you to get started and find answers to your questions. Composio.dev also provides extensive resources, including tutorials, guides, and a dedicated support team to assist you throughout your AI development journey. Whether you're a beginner or an experienced developer, you'll have access to the resources you need to make the most of these powerful tools.
+ 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๐Ÿงช