with Nextlead and Handwrytten?
Emit new event when a lead is added to a list in NextLead. See the documentation
Emit new event when a new lead is captured in NextLead. See the documentation
Emit new event when a lead is updated in NextLead. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
nextlead: {
type: "app",
app: "nextlead",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.nextlead.$auth.api_url}/identify-user`,
headers: {
Authorization: `Bearer ${this.nextlead.$auth.api_key}`,
},
})
},
})
The Handwrytten API allows you to automate the sending of handwritten notes to clients, customers, or friends. Integrating this API within Pipedream workflows enables you to create personalized outreach at scale, triggered by various business events such as customer signups, purchases, or feedback. It's an innovative way to add a human touch to your communication strategy through technology.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
handwrytten: {
type: "app",
app: "handwrytten",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.handwrytten.com/v2/auth/getUser`,
headers: {
"Accept": `application/json`,
"Authorization": `${this.handwrytten.$auth.api_key}`,
},
})
},
})