with FullContact and FlexiSign?
Sends a signature request to the specified recipients for a document generated from a template. See the documentation
FullContact's API enriches contact information, letting you turn partial identities like an email address into a full profile including social presence, demographic data, and more. This is invaluable for enhancing customer understanding and personalizing interactions. By leveraging Pipedream's powerful integrations, you can automate workflows that consume FullContact's enriched data, facilitating tasks like lead enrichment, audience segmentation, and personalized marketing at scale.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
full_contact: {
type: "app",
app: "full_contact",
}
},
async run({steps, $}) {
const data = {
"email": `jane.smith@gmail.com`,
}
return await axios($, {
method: "post",
url: `https://api.fullcontact.com/v3/person.enrich`,
headers: {
Authorization: `Bearer ${this.full_contact.$auth.api_key}`,
"Content-Type": `application/json`,
},
data,
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
flexisign: {
type: "app",
app: "flexisign",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.flexisign.io/v1/templates/all`,
headers: {
"api-key": `${this.flexisign.$auth.api_key}`,
},
})
},
})