Schedule

Trigger workflows on an interval or cron schedule.

Integrate the Schedule API with the noCRM.io API

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

Create Lead with noCRM.io API on Custom Interval from Schedule API
Schedule + noCRM.io
 
Try it
Create Lead with noCRM.io API on Daily schedule from Schedule API
Schedule + noCRM.io
 
Try it
Create Lead with noCRM.io API on Monthly Schedule from Schedule API
Schedule + noCRM.io
 
Try it
Create Lead with noCRM.io API on Weekly schedule from Schedule API
Schedule + noCRM.io
 
Try it
Get Lead with noCRM.io API on Custom Interval from Schedule API
Schedule + noCRM.io
 
Try it
Custom Interval from the Schedule API

Trigger your workflow every N hours, minutes or seconds.

 
Try it
Daily schedule from the Schedule API

Trigger your workflow every day.

 
Try it
Monthly Schedule from the Schedule API

Trigger your workflow on one or more days each month at a specific time (with timezone support).

 
Try it
New Lead from the noCRM.io API

Emit new event on each lead created.

 
Try it
Weekly schedule from the Schedule API

Trigger your workflow on one or more days each week at a specific time (with timezone support).

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

Updates a lead status. See docs here

 
Try it

Overview of Schedule

The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.

Overview of noCRM.io

noCRM.io API offers the ability to streamline and automate the sales process, focusing on lead management. With the noCRM.io API, you can create, update, delete, and retrieve leads, manage lead statuses, and trigger actions based on lead activity. Pipedream's serverless platform enhances these capabilities by allowing you to integrate noCRM.io with a plethora of other apps, setting up complex workflows without writing extensive code.

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