Insightly

CRM Software CRM Platform Marketing Automation

Integrate the Insightly API with the Formatting API

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

[Data] Convert JSON to String with Formatting API on Deleted Record from Insightly API
Insightly + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New Record from Insightly API
Insightly + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on Updated Record from Insightly API
Insightly + Formatting
 
Try it
[Data] Parse JSON with Formatting API on Deleted Record from Insightly API
Insightly + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Record from Insightly API
Insightly + Formatting
 
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
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
Create Task with the Insightly API

Creates a new task. See documentation

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

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

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})