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
Emit new event each time a record is added, updated, or deleted in an Airtable table. See the documentation
Emit new event for each new or modified record in a table
Create one or more records in a table by passing an array of objects containing field names and values as key/value pairs. See the documentation
Updates a record if recordId
is provided or adds a record to a table.
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}`,
},
})
},
})
Airtable (OAuth) API on Pipedream allows you to manipulate and leverage your Airtable data in a myriad of powerful ways. Sync data between Airtable and other apps, trigger workflows on updates, or process bulk data operations asynchronously. By using Airtable's structured databases with Pipedream's serverless platform, you can craft custom automation solutions, integrate with other services seamlessly, and streamline complex data processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airtable_oauth: {
type: "app",
app: "airtable_oauth",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.airtable.com/v0/meta/whoami`,
headers: {
Authorization: `Bearer ${this.airtable_oauth.$auth.oauth_access_token}`,
},
})
},
})