with LMNT and Leadzen.ai?
Generates a custom voice from a batch of input audio data. See the documentation
Fetches detailed LinkedIn profile information based on the provided URL. See the documentation
Generates an audio file from the provided text. See the documentation
Fetches the work email of a LinkedIn profile based on the specified URL. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
lmnt: {
type: "app",
app: "lmnt",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.lmnt.com/v1/account`,
headers: {
"X-API-Key": `${this.lmnt.$auth.api_key}`,
},
})
},
})
Leadzen.ai is an API designed to enhance lead management and marketing automation. It allows users to dynamically score, segment, and nurture leads based on various criteria and interactions. By integrating Leadzen.ai with Pipedream, users can automate complex workflows, sync data across multiple platforms, and trigger actions based on lead behavior in real-time. This integration enables marketers to refine their engagement strategies, personalize communications more effectively, and drive sales conversions more efficiently.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
leadzen_ai: {
type: "app",
app: "leadzen_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.leadzen.ai/api/credits`,
headers: {
Authorization: `Bearer ${this.leadzen_ai.$auth.oauth_access_token}`,
"accept": `application/json`,
},
})
},
})