AWeber

Powerfully-Simple Email Marketing

Integrate the AWeber API with the Notion API

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

Add Subscriber with AWeber API on New Database from Notion API
Notion + AWeber
 
Try it
Add Subscriber with AWeber API on New Page from Notion API
Notion + AWeber
 
Try it
Add Subscriber with AWeber API on Page or Subpage Updated from Notion API
Notion + AWeber
 
Try it
Add Subscriber with AWeber API on Updated Page from Notion API
Notion + AWeber
 
Try it
Add Subscriber with AWeber API on Updated Page ID from Notion API
Notion + AWeber
 
Try it
Subscriber Added from the AWeber API

Emit new event when a subscriber in a list is added. See the docs here

 
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
Add Subscriber with the AWeber API

Add subscribers to the specified account and list. See the docs here.

 
Try it
Append Block to Parent with the Notion API

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

 
Try it
Create Or Update Subscriber with the AWeber API

Create subscriber if the subscriber email is not existing or update the information for the specified subscriber by email. See the docs here.

 
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 Accounts with the AWeber API

Get a paginated collection of accounts. See the docs here.

 
Try it

Overview of AWeber

AWeber's API provides a suite of tools to automate email marketing efforts, enabling developers to manage subscribers, send emails, and track results programmatically. With the AWeber API on Pipedream, you can create custom workflows that react to various triggers and connect with other services to streamline your email campaigns, analyze performance, and enhance subscriber engagement.

Connect AWeber

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: {
    aweber: {
      type: "app",
      app: "aweber",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.aweber.com/1.0/accounts`,
      headers: {
        Authorization: `Bearer ${this.aweber.$auth.oauth_access_token}`,
      },
    })
  },
})

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