An award-winning Smart and Simple Lead Management solution for Small Businesses.
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
Adds a new lead into the HelloLeads system. See the documentation
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
The HelloLeads API integrates with Pipedream to automate your lead management processes. By leveraging this API on Pipedream, you can streamline contact syncing, lead tracking, and perform actions based on lead status changes. With serverless workflows, you can connect HelloLeads with various apps like CRMs, communication platforms, or data analysis tools to enhance lead engagement, follow-up efficiency, and data-driven decision-making.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
helloleads: {
type: "app",
app: "helloleads",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.helloleads.io/index.php/private/api/leads`,
headers: {
"hls-key": `token=${this.helloleads.$auth.api_key}`,
"Xemail": `${this.helloleads.$auth.email}`,
"Content-Type": `application/json`,
},
})
},
})
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}`,
},
})
},
})