Agile CRM Software is the best, easy, powerful yet affordable Customer Relationship Management (CRM) with sales and marketing automation for small businesses.
Go to siteAgile 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:
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}`,
},
})
},
})
Used to change the score of a contact. See the documentation
Adds a tag or tags to an existing contact. See the documentation
Agile CRM uses API keys for authentication. When you connect your Agile CRM account, Pipedream securely stores the keys so you can easily authenticate to Agile CRM APIs in both code and no-code steps.
https://12345678.agilecrm.com/
, your domain is 12345678
.