noCRM.io

Lead Management Software

Integrate the noCRM.io API with the HTTP / Webhook API

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

Create Lead with noCRM.io API on New Requests from HTTP / Webhook API
HTTP / Webhook + noCRM.io
 
Try it
Get Lead with noCRM.io API on New Requests from HTTP / Webhook API
HTTP / Webhook + noCRM.io
 
Try it
Update Lead Status with noCRM.io API on New Requests from HTTP / Webhook API
HTTP / Webhook + noCRM.io
 
Try it
Create Lead with noCRM.io API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + noCRM.io
 
Try it
Get Lead with noCRM.io API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + noCRM.io
 
Try it
New Requests from the HTTP / Webhook API

Get a URL and emit the full HTTP event on every request (including headers and query parameters). You can also configure the HTTP response code, body, and more.

 
Try it
New Requests (Payload Only) from the HTTP / Webhook API

Get a URL and emit the HTTP body as an event on every request

 
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
Get Lead with the noCRM.io API

Get a lead. See docs here

 
Try it
Send any HTTP Request with the HTTP / Webhook API

Send an HTTP request using any method and URL. Optionally configure query string parameters, headers, and basic auth.

 
Try it
Send GET Request with the HTTP / Webhook API

Send an HTTP GET request to any URL. Optionally configure query string parameters, headers and basic auth.

 
Try it
Send POST Request with the HTTP / Webhook API

Send an HTTP POST request to any URL. Optionally configure query string parameters, headers and basic auth.

 
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 HTTP / Webhook

1
2
3
4
5
6
7
8
9
10
11
12
13
// To use any npm package on Pipedream, just import it
import axios from "axios"

export default defineComponent({
  async run({ steps, $ }) {
    const { data } = await axios({
      method: "GET",
      url: "https://pokeapi.co/api/v2/pokemon/charizard",
    })
    return data.species
  },
})

Community Posts

A Look at Pipedream
A Look at Pipedream
I'm going to build a workflow that will search Twitter every hour for a keyword. It will take the results, format them nicely, and then email it.
Building a Traffic-Based Workflow in Pipedream
Building a Traffic-Based Workflow in Pipedream
Normally I don't like to blog about stuff that isn't generally available to all, but as it will be available sometime soon, I decided to go ahead anyway. And I built something really cool I want to share so that's another reason to talk about this now!