What do you want to automate

with SeaTable and SendinBlue?

Prompt, edit and deploy AI agents that connect to SeaTable, SendinBlue and 2,500+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Add or Update a contact with SendinBlue API on New or Updated Row (Instant) from SeaTable API
SeaTable + SendinBlue
 
Try it
Add or Update a contact with SendinBlue API on New Row Created (Instant) from SeaTable API
SeaTable + SendinBlue
 
Try it
Create Row with SeaTable API on New Marketing Webhook (Instant) from SendinBlue API
SendinBlue + SeaTable
 
Try it
Create Row with SeaTable API on New Transactional Webhook (Instant) from SendinBlue API
SendinBlue + SeaTable
 
Try it
Delete Row with SeaTable API on New Marketing Webhook (Instant) from SendinBlue API
SendinBlue + SeaTable
 
Try it
New Marketing Webhook (Instant) from the SendinBlue API

Emit new event when triggered by a marketing event

 
Try it
New or Updated Row (Instant) from the SeaTable API

Emit new event when a row is added or updated in a table.

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

Emit new event when triggered by a transactional event

 
Try it
New Row Created (Instant) from the SeaTable API

Emit new event when a new row is added to a table.

 
Try it
Create Row with the SeaTable API

Creates a new row in the specified table. See the documentation

 
Try it
Add or Update a contact with the SendinBlue API

Add or Update a contact

 
Try it
Delete Row with the SeaTable API

Deletes a specific row from a specified table. See the documentation

 
Try it
Send Transactional Email with the SendinBlue API

Send transactional email. See the docs for more information.

 
Try it
Update Row with the SeaTable API

Updates an existing row in a specified table. See the documentation

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

Overview of SeaTable

The SeaTable API allows you to interact programmatically with SeaTable databases. With it, you can create, update, and delete records, rows, and columns, manipulate tables, and manage users. In Pipedream, you can harness this API to automate data flows between SeaTable and other apps, trigger workflows based on changes in your SeaTable bases, and manipulate data without manual intervention. Think of it as connecting your spreadsheets' data to the wider web.

Connect SeaTable

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    seatable: {
      type: "app",
      app: "seatable",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://cloud.seatable.io/api2/account/info/`,
      headers: {
        Authorization: `Bearer ${this.seatable.$auth.account_token}`,
      },
    })
  },
})

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`,
      },
    })
  },
})

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo