Agile CRM Software is the best, easy, powerful yet affordable Customer Relationship Management (CRM) with sales and marketing automation for small businesses.
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:
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}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})