CRM - customer relationship management. Managing sales opportunities from various sources (Mailing, Cold Calling, Live Chat, Google Ads, FB, Callback) in one place.
Emit new event when a new customer is created. See the documentation
The Firmao API allows for the integration of Firmao's CRM and ERP features into Pipedream's serverless platform, enabling the automation of tasks such as managing contacts, projects, tasks, invoices, and timesheets. By leveraging Pipedream's capabilities, users can create custom workflows that respond to events in Firmao, or orchestrate actions between Firmao and other apps to streamline business processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
firmao: {
type: "app",
app: "firmao",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://system.firmao.net/${this.firmao.$auth.organization_id}/svc/v1/contacts`,
auth: {
username: `${this.firmao.$auth.api_login}`,
password: `${this.firmao.$auth.api_password}`,
},
})
},
})
Develop, run and deploy your Node.js code in Pipedream workflows, using it between no-code steps, with connected accounts, or integrate Data Stores and File Stores.
This includes installing NPM packages, within your code without having to manage a package.json
file or running npm install
.
Below is an example of installing the axios
package in a Pipedream Node.js code step. Pipedream imports the axios
package, performs the API request, and shares the response with subsequent workflow steps:
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})