Bilionis is the community of Italian professionals and companies who use intelligent catalogues.
Emit new event when a new lead sends a message. See the documentation
The Bilionis API offers a suite of functionalities for managing and analyzing customer interactions and sales data. Within Pipedream, you can leverage this API to automate workflows involving customer relationship management and data analysis. By connecting Bilionis with other apps, you streamline operations such as syncing customer data across platforms, triggering personalized marketing campaigns, and generating data-driven insights to inform business strategies.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bilionis: {
type: "app",
app: "bilionis",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://bilionis.com/api/`,
params: {
mail: `${this.bilionis.$auth.email}`,
key: `${this.bilionis.$auth.api_key}`,
},
})
},
})
The Filter API in Pipedream allows for real-time data processing within workflows. It's designed to evaluate data against predefined conditions, enabling workflows to branch or perform specific actions based on those conditions. This API is instrumental in creating efficient, targeted automations that respond dynamically to diverse datasets. Using the Filter API, you can refine streams of data, ensuring that subsequent steps in your Pipedream workflow only execute when the data meets your specified criteria. This cuts down on unnecessary processing and facilitates the creation of more intelligent, context-aware systems.
export default defineComponent({
async run({ steps, $ }) {
let condition = false
if (condition == false) {
$.flow.exit("Ending workflow early because the condition is false")
} else {
$.export("$summary", "Continuing workflow, since condition for ending was not met.")
}
},
})