SendinBlue

Sendinblue powers advanced email marketing and automation

Integrate the SendinBlue API with the Schedule API

Setup the SendinBlue API trigger to run a workflow which integrates with the Schedule API. Pipedream's integration platform allows you to integrate SendinBlue and Schedule remarkably fast. Free for developers.

Add or Update a contact with SendinBlue API on Custom Interval from Schedule API
Schedule + SendinBlue
 
Try it
Add or Update a contact with SendinBlue API on Daily schedule from Schedule API
Schedule + SendinBlue
 
Try it
Add or Update a contact with SendinBlue API on Monthly Schedule from Schedule API
Schedule + SendinBlue
 
Try it
Add or Update a contact with SendinBlue API on Weekly schedule from Schedule API
Schedule + SendinBlue
 
Try it
Send transactional email with SendinBlue API on Custom Interval from Schedule API
Schedule + SendinBlue
 
Try it
Custom Interval from the Schedule API

Trigger your workflow every N hours, minutes or seconds.

 
Try it
New Marketing Webhook (Instant) from the SendinBlue API

Emit new event when triggered by a marketing event

 
Try it
Daily schedule from the Schedule API

Trigger your workflow every day.

 
Try it
New Transactional Webhook (Instant) from the SendinBlue API

Emit new event when triggered by a transactional event

 
Try it
Monthly Schedule from the Schedule API

Trigger your workflow on one or more days each month at a specific time (with timezone support).

 
Try it
Add or Update a contact with the SendinBlue API

Add or Update a contact

 
Try it
Send Transactional Email with the SendinBlue API

Send transactional email. See the docs for more information.

 
Try it

Overview of SendinBlue

The SendinBlue API offers a suite of email marketing tools, including campaign creation, contact list management, and transactional email sending. It's designed for crafting personalized messages, automating marketing workflows, and tracking the performance of email campaigns. With Pipedream, you can harness the power of SendinBlue by automating interactions with other services, reacting to events with custom code, and stitching together complex workflows with minimal effort.

Connect SendinBlue

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    sendinblue: {
      type: "app",
      app: "sendinblue",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.sendinblue.com/v3/account`,
      headers: {
        "api-key": `${this.sendinblue.$auth.api_key}`,
        "content-type": `application/json`,
      },
    })
  },
})

Overview of Schedule

The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.