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
Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.
Format a date string to another date string. For more examples on formatting, see the Sugar Date Format 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}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})