Open Source CRM. Easy to customize.
Emit new event when a contact group is updated. See the documentation
Emit new event when a contact is updated. See the documentation
Emit new event upon the creation, update, deletion, or changes of any field in an entity type. See the documentation
Emit new event when a new contact is created. See the documentation
Emit new event when a new contact group is created. See the documentation
The EspoCRM API allows for robust interaction with your CRM data, enabling the automation of tasks, syncing data across platforms, and the enhancement of customer relationship management through customized workflows. By leveraging this API within Pipedream, you can design serverless workflows that react to CRM events, integrate with other services, and manipulate data to fit your business processes. Pipedream's no-code platform makes it straightforward to create, execute, and maintain these workflows, allowing you to focus on innovation rather than infrastructure.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
espocrm: {
type: "app",
app: "espocrm",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.espocrm.$auth.url}/api/v1/CurrencyRate`,
headers: {
"X-Api-Key": `${this.espocrm.$auth.api_key}`,
},
})
},
})
The Google Contacts API allows you to integrate your contact data with custom applications, enabling you to sync, manage, and leverage your contact list for a variety of functions. Through Pipedream, you can seamlessly connect the Google Contacts API to various other services, streamlining contact management tasks such as syncing contact details across platforms, automating outreach or follow-ups, and gathering insights from contact interactions.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
google_contacts: {
type: "app",
app: "google_contacts",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://people.googleapis.com/v1/people/me`,
headers: {
Authorization: `Bearer ${this.google_contacts.$auth.oauth_access_token}`,
},
params: {
personFields: `names,emailAddresses`,
},
})
},
})