noCRM.io

Lead Management Software

Integrate the noCRM.io API with the Formatting API

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

[Data] Convert JSON to String with Formatting API on New Lead from noCRM.io API
noCRM.io + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New Lead Status Changed from noCRM.io API
noCRM.io + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New Prospect from noCRM.io API
noCRM.io + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Lead from noCRM.io API
noCRM.io + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Lead Status Changed from noCRM.io API
noCRM.io + Formatting
 
Try it
New Lead from the noCRM.io API

Emit new event on each lead created.

 
Try it
New Lead Status Changed from the noCRM.io API

Emit new event when a lead status is changed.

 
Try it
New Prospect from the noCRM.io API

Emit new event on each prospect created.

 
Try it
Create Lead with the noCRM.io API

Creates a new lead. See docs here

 
Try it
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
Get Lead with the noCRM.io API

Get a lead. See docs here

 
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 noCRM.io

NoCRM.io is a CRM platform that offers a powerful API that developers can use
to power custom applications and integrations. With it, you can build
applications to help organize customers, products, marketing campaigns, sales
processes, and much more.

Here are some examples of what you can create with the NoCRM.io API:

  • Create customer profiles with contact information, notes, and rich media
    attachments
  • Integrate with existing applications like marketing automation, customer
    service platforms, and eCommerce stores
  • Automate sales processes with customizable workflows
  • Create powerful dashboards that visualize customer data in real-time
  • Develop custom reports and analytics to monitor sales performance
  • Track customer activity with real-time notifications
  • Set up notifications for when important business milestones are met
  • Create lead qualification rules based on specific criteria

Connect noCRM.io

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: {
    nocrm_io: {
      type: "app",
      app: "nocrm_io",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.nocrm_io.$auth.subdomain}.nocrm.io/api/v2/users`,
      headers: {
        "X-API-KEY": `${this.nocrm_io.$auth.api_key}`,
      },
    })
  },
})

Connect Formatting

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