CRM Software CRM Platform Marketing Automation
Add or update a single record in your Pipedream Data Store.
Add or update multiple records to your Pipedream Data Store.
Check if a key exists in your Pipedream Data Store or create one if it doesn't exist.
Insightly is a CRM software that helps businesses manage their customer
relationships. It offers a wide range of features including contact management,
lead capture, task management, deals, projects, and reporting.
The Insightly API allows developers to access and integrate the functionality
of Insightly with other applications. Some example API methods include managing
contacts, managing deals, and retrieving project information.
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: ``,
},
})
},
})
With the Data Stores API, you can build applications that:
export default defineComponent({
props: {
myDataStore: {
type: "data_store",
},
},
async run({ steps, $ }) {
await this.myDataStore.set("key_here","Any serializable JSON as the value")
return await this.myDataStore.get("key_here")
},
})