with signNow and Clearbit?
Emit new event when all signers have filled in and signed the document. See the documentation
Emit new event when a document has been updated. See the documentation
The Company Name to Domain action lets you convert the exact name of a company to a website domain, and a logo. See the docs here
Creates a new document copy out of a template. See the documentation
The Company API allows you to look up a company by their domain. See the docs here
Adds values to fields that the signers can later edit when they receive the document for signature. See the documentation
This endpoint retrieves a person by email address. See the docs here
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
signnow: {
type: "app",
app: "signnow",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.signnow.com/user`,
headers: {
Authorization: `Bearer ${this.signnow.$auth.oauth_access_token}`,
},
})
},
})
Clearbit API offers robust data enrichment capabilities, allowing you to seamlessly integrate comprehensive business intelligence into your applications. By leveraging Clearbit, you can append real-time insights to your leads, automate personalized outreach, and gain a deeper understanding of your customers. With insights ranging from company profiles, contact details, to employment information, the possibilities to enhance your marketing, sales, and customer support efforts are vast.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
clearbit: {
type: "app",
app: "clearbit",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://person.clearbit.com/v1/people/email/alex@alexmaccaw.com`,
headers: {
Authorization: `Bearer ${this.clearbit.$auth.secret_api_key}`,
},
})
},
})