SheetDB

Turn a Google Spreadsheet into a JSON API. Connect Google sheets to CRM, API, Website, WordPress, any application or tool.

Integrate the SheetDB API with the Notion API

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

Create Rows with SheetDB API on New Database from Notion API
Notion + SheetDB
 
Try it
Create Rows with SheetDB API on New Page in Database from Notion API
Notion + SheetDB
 
Try it
Create Rows with SheetDB API on Page or Subpage Updated from Notion API
Notion + SheetDB
 
Try it
Create Rows with SheetDB API on Updated Page ID from Notion API
Notion + SheetDB
 
Try it
Create Rows with SheetDB API on Updated Page in Database from Notion API
Notion + SheetDB
 
Try it
New Database from the Notion API

Emit new event when a database is created. Note: Databases must be shared with your Pipedream Integtration to trigger event.

 
Try it
New Page in Database from the Notion API

Emit new event when a page in a database is created

 
Try it
Page or Subpage Updated from the Notion API

Emit new event when a page or one of its sub-pages is updated.

 
Try it
Updated Page ID from the Notion API

Emit new event when a selected page is updated

 
Try it
Updated Page in Database from the Notion API

Emit new event when a page in a database is updated. To select a specific page, use Updated Page ID instead

 
Try it
Create Rows with the SheetDB API

Create rows in a Google Sheet using the SheetDB API. See the documentation

 
Try it
Append Block to Parent with the Notion API

Creates and appends blocks to the specified parent. See the documentation

 
Try it
Delete Rows with the SheetDB API

Deletes the specified row(s) in a SheetDB sheet by matching a column name and value. See the documentation

 
Try it
Create Page with the Notion API

Creates a page from a parent page. The only valid property is title. See the documentation

 
Try it
Get Column Names with the SheetDB API

Get column names of a Google Sheet using the SheetDB API. See the documentation

 
Try it

Overview of SheetDB

SheetDB API turns your Google Sheets into a JSON API, enabling you to manage the content within your spreadsheet through RESTful endpoints. With Pipedream, you can harness this capability to build robust automations and workflows that interact with your spreadsheet data dynamically. Whether you're updating rows based on external triggers, syncing data to other platforms, or building a makeshift CRM, SheetDB paired with Pipedream's zero-management execution environment lets you deploy these solutions rapidly.

Connect SheetDB

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    sheetdb: {
      type: "app",
      app: "sheetdb",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://sheetdb.io/api/v1/${this.sheetdb.$auth.api_id}`,
    })
  },
})

Overview of Notion

Notion's API allows for the creation, reading, updating, and deleting of pages, databases, and their contents within Notion. Using Pipedream's platform, you can build workflows that connect Notion with various other services to automate tasks such as content management, task tracking, and data synchronization. With Pipedream's serverless execution, you can trigger these workflows on a schedule, or by external events from other services, without managing any infrastructure.

Connect Notion

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: {
    notion: {
      type: "app",
      app: "notion",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.notion.com/v1/users/me`,
      headers: {
        Authorization: `Bearer ${this.notion.$auth.oauth_access_token}`,
        "Notion-Version": `2021-08-16`,
      },
    })
  },
})