LionDesk is a comprehensive customer relationship management (CRM) platform designed specifically for real estate professionals, offering tools for managing leads, contacts, transactions, and communications in one centralized system.
The Liondesk API enables you to automate and integrate your CRM tasks, streamlining your customer relationship workflows. With this API on Pipedream, you can craft workflows that trigger actions based on events, manage contacts, send messages, and much more. Pipedream's serverless platform simplifies the process, allowing you to connect Liondesk with hundreds of other apps to automate complex tasks without writing extensive code.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
liondesk: {
type: "app",
app: "liondesk",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api-v2.liondesk.com/me`,
headers: {
Authorization: `Bearer ${this.liondesk.$auth.oauth_access_token}`,
},
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.