Lead generation platform that gives you real-time info about companies and people that visit your website. Turning anonymous web traffic into actionable data.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
leadboxer: {
type: "app",
app: "leadboxer",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://kibana.leadboxer.com/api/views/c_view_leads`,
headers: {
"Content-Type": `application/json`,
},
params: {
apiKey: `${this.leadboxer.$auth.api_key}`,
site: `${this.leadboxer.$auth.dataset_id}`,
},
})
},
})
LeadBoxer uses API keys for authentication. When you connect your LeadBoxer account, Pipedream securely stores the keys so you can easily authenticate to LeadBoxer APIs in both code and no-code steps.
To retrieve your API Key,
Sign in and copy your Dataset ID from the LeadBoxer dashboard.