B2B Lead Enrichment in a Click
With the Lusha API you can build a wide range of applications and integrations
including:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
lusha: {
type: "app",
app: "lusha",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.lusha.com/person`,
headers: {
"api_key": `${this.lusha.$auth.api_key}`,
},
params: {
firstName: `Rob`,
lastName: `Taylor`,
company: `intercom`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})