Insightly

CRM Software CRM Platform Marketing Automation

Integrate the Insightly API with the BingX API

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

BingX Trade Query Order with BingX API on Updated Record from Insightly API
Insightly + BingX
 
Try it
BingX Account Get Balance with BingX API on Deleted Record from Insightly API
Insightly + BingX
 
Try it
BingX Account Get Balance with BingX API on New Record from Insightly API
Insightly + BingX
 
Try it
BingX Account Get Balance with BingX API on Updated Record from Insightly API
Insightly + BingX
 
Try it
BingX Account Get Positions with BingX API on Deleted Record from Insightly API
Insightly + BingX
 
Try it
Deleted Record from the Insightly API

Emit new event when a record is deleted.

 
Try it
New Record from the Insightly API

Emit new event when a new record is created.

 
Try it
Updated Record from the Insightly API

Emit new event when a new record is created.

 
Try it
Create Contact with the Insightly API

Creates a new contact. See documentation

 
Try it
BingX Account Get Balance with the BingX API

Get Perpetual Swap Account Asset Information See the documentation.

 
Try it
Create Task with the Insightly API

Creates a new task. See documentation

 
Try it
BingX Account Get Positions with the BingX API

Perpetual Swap Positions See the documentation.

 
Try it
BingX Custom Bracket Order with the BingX API

Place bracket order. See the documentation

 
Try it

Overview of Insightly

Insightly's API offers a suite of functions that let you tap into your customer relationship management in real-time, integrating customer data, sales, and project info across a diverse array of business applications and workflows. With Pipedream, you can automate interactions with your Insightly account, sync data effortlessly, and connect to hundreds of apps to streamline tasks, from lead management to project tracking.

Connect Insightly

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: {
    insightly: {
      type: "app",
      app: "insightly",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.${this.insightly.$auth.pod}.insightly.com/v3.1/Contacts`,
      auth: {
        username: `${this.insightly.$auth.api_key}`,
        password: ``,
      },
    })
  },
})

Overview of BingX

The BingX API offers a digital asset trading platform that enables users to perform crypto trades, access market data, and manage their portfolio. By leveraging this API on Pipedream, you can automate your cryptocurrency trading strategies, synchronize your trading data with other financial tools, and create real-time alerts based on market conditions.

Connect BingX

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { axios } from '@pipedream/platform';

export default defineComponent({
  props: {
    bingx: {
      type: "app",
      app: "bingx",
    }
  },
  async run({steps, $}) {
    // Requires a dynamic signature generated for each request at runtime.
    // please see conversation here: https://github.com/PipedreamHQ/pipedream/issues/4363
  },
})