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 Python code in Pipedream workflows. Integrate seamlessly between no-code steps, with connected accounts, or integrate Data Stores and manipulate files within a workflow.
This includes installing PyPI packages, within your code without having to manage a requirements.txt
file or running pip
.
Below is an example of using Python to access data from the trigger of the workflow, and sharing it with subsequent workflow steps:
def handler(pd: "pipedream"):
# Reference data from previous steps
print(pd.steps["trigger"]["context"]["id"])
# Return data for use in future steps
return {"foo": {"test":True}}