Copperx

Payment APIs for Web3 businesses. Start accepting crypto and fiat payments with a single API via Recurring billing, Checkout and Invoicing.

Integrate the Copperx API with the Notion API

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

Append Block to Parent with Notion API on New Customer Subscription Created (Instant) from Copperx API
Copperx + Notion
 
Try it
Append Block to Parent with Notion API on New Invoice Paid (Instant) from Copperx API
Copperx + Notion
 
Try it
Create Customer with Copperx API on New Database from Notion API
Notion + Copperx
 
Try it
Create Customer with Copperx API on New Page in Database from Notion API
Notion + Copperx
 
Try it
Create Customer with Copperx API on Page or Subpage Updated from Notion API
Notion + Copperx
 
Try it
New Customer Subscription Created (Instant) from the Copperx API

Emit new event when a new customer subcription is created.

 
Try it
New Invoice Paid (Instant) from the Copperx API

Emit new event when an invoice is paid.

 
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 Customer with the Copperx API

Create a new customer 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 Invoice with the Copperx API

Create a new invoice 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
Create Page from Database with the Notion API

Creates a page from a database. See the docs

 
Try it

Overview of Copperx

The Copperx API offers a suite of tools for cryptocurrency trading, providing users with real-time access to market data, order execution, and account management. Integrating this API into Pipedream allows for the creation of custom, serverless workflows that can automate trading strategies, alert users to market changes, and manage portfolios efficiently without manual intervention. By leveraging Pipedream's ability to connect to hundreds of apps, users can develop robust, event-driven automations that respond to market conditions or other external signals.

Connect Copperx

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: {
    copperx: {
      type: "app",
      app: "copperx",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.copperx.$auth.environment}/api/v1/organization`,
      headers: {
        Authorization: `Bearer ${this.copperx.$auth.api_key}`,
        "accept": `application/json`,
      },
    })
  },
})

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