Agile CRM Software is the best, easy, powerful yet affordable Customer Relationship Management (CRM) with sales and marketing automation for small businesses.
Used to change the score of a contact. See the documentation
Add Time for a General Log. Adds the time log to other tasks. See the docs here
Adds a tag or tags to an existing contact. See the documentation
The Agile CRM API interacts with Agile's sales, marketing, and service software, offering a suite of features including contact management, deals, and campaign automation. On Pipedream, you can automate interactions with Agile CRM, such as syncing contacts, updating deals, or triggering campaigns. By leveraging Pipedream's serverless platform, you can connect Agile CRM to hundreds of other apps, creating custom, automated workflows that operate in real-time, and with no server maintenance required.
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}`,
},
})
},
})
The Zoho Projects API lets you harness the full potential of project management by enabling seamless integration with other tools and automating routine tasks. With it, you can create projects, manage tasks, track time, and customize your workflow. On Pipedream, you can leverage this API to build robust automations that connect Zoho Projects with a plethora of other apps, streamlining project tracking and collaboration workflows, all without writing a single line of code.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zoho_projects: {
type: "app",
app: "zoho_projects",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://projectsapi.${this.zoho_projects.$auth.region}/restapi/portals/`,
headers: {
"Authorization": `Zoho-oauthtoken ${this.zoho_projects.$auth.oauth_access_token}`,
},
})
},
})