with Relintex CRM and UpLead?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
relintex_crm: {
type: "app",
app: "relintex_crm",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://connect-test.relintex.net/api/v2/lead/list`,
headers: {
"accept": `application/json`,
},
auth: {
username: `${this.relintex_crm.$auth.username}`,
password: `${this.relintex_crm.$auth.password}`,
},
params: {
page_size: `100`,
page: `1`,
},
})
},
})
The UpLead API provides access to a robust database of B2B contacts and companies, enabling users to enrich leads with detailed information like email addresses, phone numbers, company details, and more. Within Pipedream, you can integrate the UpLead API to automate lead enrichment, sync lead data with other tools, and build custom workflows that leverage UpLead's data for sales intelligence, marketing campaigns, and CRM data enhancement.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
uplead: {
type: "app",
app: "uplead",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.uplead.com/v2/credits`,
headers: {
"Authorization": `${this.uplead.$auth.api_key}`,
},
})
},
})