BaseLinker

Integrate your e-commerce workflow in one place.

Integrate the BaseLinker API with the Notion API

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

Append Block to Parent with Notion API on New Order Created from BaseLinker API
BaseLinker + Notion
 
Try it
Append Block to Parent with Notion API on Order Status Updated from BaseLinker API
BaseLinker + Notion
 
Try it
Create Or Update Inventory Product with BaseLinker API on New Database from Notion API
Notion + BaseLinker
 
Try it
Create Or Update Inventory Product with BaseLinker API on New Page in Database from Notion API
Notion + BaseLinker
 
Try it
Create Or Update Inventory Product with BaseLinker API on Page or Subpage Updated from Notion API
Notion + BaseLinker
 
Try it
New Order Created from the BaseLinker API

Emit new event when a new order is created in BaseLinker. See the Documentation.

 
Try it
Order Status Updated from the BaseLinker API

Emit new event when an order status changes in BaseLinker. See the Documentation.

 
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
Create Or Update Inventory Product with the BaseLinker API

It allows you to add a new product to BaseLinker catalog. Entering the product with the ID updates previously saved product. 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
Create Order with the BaseLinker API

It allows adding a new order to the BaseLinker order manager. 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
Delete Inventory Product with the BaseLinker API

It allows you to remove the product from BaseLinker catalog. See the Documentation.

 
Try it

Overview of BaseLinker

The BaseLinker API offers access to a suite of e-commerce management tools, enabling seamless integration of orders, products, and inventory across various online sales channels. With Pipedream's ability to connect APIs, you can automate tasks between BaseLinker and other apps to streamline your e-commerce operations, from syncing inventory to processing orders.

Connect BaseLinker

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    baselinker: {
      type: "app",
      app: "baselinker",
    }
  },
  async run({steps, $}) {
    const data = {
      "method": `getInventories`,
    }
    return await axios($, {
      method: "post",
      url: `https://api.baselinker.com/connector.php`,
      headers: {
        "X-BLToken": `${this.baselinker.$auth.api_key}`,
        "Content-Type": `application/x-www-form-urlencoded`,
      },
      data,
    })
  },
})

Overview of Notion

Notion's API allows for the creation, reading, updating, and deleting of pages, databases, and their contents within Notion. Leveraging Pipedream's platform, you can build workflows that connect Notion with a myriad of 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`,
      },
    })
  },
})