Brevo integration
Brevo (formerly Sendinblue) is an all-in-one email and SMS marketing platform…
- Provider
- brevo
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 21 available
Quick start
Call Brevo from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Brevo's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"BREVO_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
End-users supply their own Brevo API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.
Available actions
21 actions exposed via the
Brevo integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
BREVO_CREATE_A_COMPANY -
BREVO_CREATE_CONTACT_LIST -
BREVO_CREATE_OR_UPDATE_EMAIL_TEMPLATE -
BREVO_CREATE_SMS_CAMPAIGN -
BREVO_DELETE_COMPANY -
BREVO_DELETE_CONTACT -
BREVO_DELETE_EMAIL_TEMPLATE -
BREVO_DELETE_SMS_CAMPAIGN -
BREVO_GET_ACCOUNT_INFO -
BREVO_GET_ALL_CONTACTS -
BREVO_GET_ALL_EMAIL_TEMPLATES -
BREVO_GET_ALL_SENDERS
Show all 21 actions
-
BREVO_GET_COMPANY_DETAILS -
BREVO_GET_CONTACT_DETAILS -
BREVO_GET_CONTACT_LISTS -
BREVO_GET_EMAIL_CAMPAIGN_DETAILS -
BREVO_GET_SMS_CAMPAIGN_DETAILS -
BREVO_GET_SMS_CAMPAIGNS -
BREVO_LIST_ALL_COMPANIES -
BREVO_LIST_EMAIL_CAMPAIGNS -
BREVO_UPDATE_EMAIL_CAMPAIGN
Build with Brevo
Open OverSkill, describe what you want to build, and reference Brevo in your prompt — the AI will wire up the integration automatically.