CRM - customer relationship management. Managing sales opportunities from various sources (Mailing, Cold Calling, Live Chat, Google Ads, FB, Callback) in one place.
Go to siteimport { 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}`,
},
})
},
})
Emit new event when a new customer is created. See the documentation
Firmao uses API keys for authentication. When you connect your Firmao account, Pipedream securely stores the keys so you can easily authenticate to Firmao APIs in both code and no-code steps.
To retrieve your API Login and Password,
Your Organization ID is 1234
if your Firmao login URL after you login is https://system.firmao.net/1234