Nectar CRM

NectarCRM is a solution for customer relationships, focused on the management and acceleration of sales.

Integrate the Nectar CRM API with the Schedule API

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

Create Appointment with Nectar CRM API on Custom Interval from Schedule API
Schedule + Nectar CRM
 
Try it
Create Appointment with Nectar CRM API on Daily schedule from Schedule API
Schedule + Nectar CRM
 
Try it
Create Appointment with Nectar CRM API on Monthly Schedule from Schedule API
Schedule + Nectar CRM
 
Try it
Create Appointment with Nectar CRM API on Weekly schedule from Schedule API
Schedule + Nectar CRM
 
Try it
Create Contact with Nectar CRM API on Custom Interval from Schedule API
Schedule + Nectar CRM
 
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
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 Appointment with the Nectar CRM API

Created a new appointment. See docs here

 
Try it
Create Contact with the Nectar CRM API

Created a new contact. See docs here

 
Try it
Create Sale Opportunity with the Nectar CRM API

Created a sale opportunity. See docs here

 
Try it
Create Task with the Nectar CRM API

Created a new task. See docs here

 
Try it

Overview of Nectar CRM

The Nectar CRM API can be used to build a wide variety of applications,
including:

  • Customer Relationship Management (CRM) applications
  • Sales and marketing applications
  • Customer service and support applications
  • E-commerce applications
  • Accounting and financial applications
  • Human resources applications
  • Project management applications
  • Inventory management applications
  • And much more!

Connect Nectar CRM

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: {
    nectar_crm: {
      type: "app",
      app: "nectar_crm",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://app.nectarcrm.com.br/crm/api/1/contatos/`,
      headers: {
        "Access-Token": `${this.nectar_crm.$auth.api_token}`,
      },
    })
  },
})

Overview of Schedule

With Schedule - A trigger provided by Pipedream - You can easily build
automated workflows that run on regular times or intervals. Some examples of
things that you can build using the Schedule API include:

  • Automated data retrieval from a third-party service, like pulling stats from
    your Salesforce account on a set schedule.
  • Uploading new data sets to a database with a predetermined interval.
  • Automatic emails to customers or leads at a certain time of the day.
  • Automating data analysis based on a set schedule.
  • Automatically optimizing social media postings according to a specified
    timeline.
  • Updating webpages at a certain interval with newly available content.
  • Re-running reports on a periodic basis.
  • Refreshing a cache of data at a given frequency.