Agile CRM

Agile CRM Software is the best, easy, powerful yet affordable Customer Relationship Management (CRM) with sales and marketing automation for small businesses.

Integrate the Agile CRM API with the Schedule API

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

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

Emit new event when a new contact is 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 Contact with the Agile CRM API

Create a new contact in Agile CRM. See the docs here

 
Try it
Create Task with the Agile CRM API

Create a new task in Agile CRM. See the docs here

 
Try it
Create Ticket with the Agile CRM API

Create a new ticket in Agile CRM. See the docs here

 
Try it
Update Contact with the Agile CRM API

Update an existing contact in Agile CRM. See the docs here

 
Try it
Update Contact with the Agile CRM API

Update an existing contact in Agile CRM. See the docs here

 
Try it

Overview of Agile CRM

Agile CRM provides an API that lets developers build a wide range of
applications and integrations with the Agile CRM platform. Here are some
examples of what you can build using the Agile CRM API:

  • A custom application or integration with your existing systems
  • A contact management system
  • A lead management system
  • A sales CRM
  • A marketing automation tool
  • An appointment scheduling system
  • A live chat system

Connect Agile CRM

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    agile_crm: {
      type: "app",
      app: "agile_crm",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.agile_crm.$auth.domain}.agilecrm.com/dev/api/contacts`,
      auth: {
        username: `${this.agile_crm.$auth.username}`,
        password: `${this.agile_crm.$auth.api_key}`,
      },
    })
  },
})

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.