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 Discord API

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

Add Score to Contact with Agile CRM API on New Message (Instant) from Discord API
Discord + Agile CRM
 
Try it
Add Tags to Contact with Agile CRM API on New Message (Instant) from Discord API
Discord + Agile CRM
 
Try it
Create Company with Agile CRM API on New Message (Instant) from Discord API
Discord + Agile CRM
 
Try it
Create Contact Note with Agile CRM API on New Message (Instant) from Discord API
Discord + Agile CRM
 
Try it
Create Contact with Agile CRM API on New Message (Instant) from Discord API
Discord + Agile CRM
 
Try it
New Message (Instant) from the Discord API

Emit new event for each message posted to one or more channels in a Discord server

 
Try it
Message Deleted (Instant) from the Discord API

Emit new event for each message deleted

 
Try it
New Command Received (Instant) from the Discord API

Emit new event for each command posted to one or more channels in a Discord server

 
Try it
New Guild Member (Instant) from the Discord API

Emit new event for each new member added to a guild

 
Try it
New Guild Member (Instant) from the Discord API

Emit new event for each new member added to a guild

 
Try it
Add Score to Contact with the Agile CRM API

Used to change the score of a contact. See the documentation

 
Try it
Add Tags to Contact with the Agile CRM API

Adds a tag or tags to an existing contact. See the documentation

 
Try it
Create Company with the Agile CRM API

Create a new company in Agile CRM. See the documentation

 
Try it
Create Contact with the Agile CRM API

Create a new contact in Agile CRM. See the documentation

 
Try it
Create Contact Note with the Agile CRM API

Adds a note to a contact. See the documentation

 
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 Discord

The Pipedream Discord app enables you to build event-driven workflows that interact with the Discord API. When you authorize the Pipedream app's access to your guilds, you can use Pipedream workflows to perform common Discord actions, or write your own code against the Discord API.

Connect Discord

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: {
    discord: {
      type: "app",
      app: "discord",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://discord.com/api/users/@me`,
      headers: {
        Authorization: `Bearer ${this.discord.$auth.oauth_access_token}`,
        "accept": `application/json`,
      },
    })
  },
})