with Docusign and AttractWell?
Emit new event when a contact becomes a new member of a vault.
Emit new event when an envelope's status is updated
Emit new event when a new registration for an event takes place.
Emit new event when a lead is gained from a landing page.
Create and send an envelope, or create a draft envelope. See the documentation here
Creates a signature request from a template See the docs here
Creates or updates a contact with the provided identification and contact details.
Download the documents of an envelope to the /tmp directory. See the documentation here
Approves, rejects, or unapproves a lesson in the AttractWell system based on the selected status.
The DocuSign API enables you to integrate electronic signature workflows into your applications, automate the process of sending and receiving documents for signatures, and securely manage related data. Leveraging Pipedream's platform, you can build powerful automations that streamline how contracts and agreements are handled, enhance compliance, and improve overall efficiency.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
docusign: {
type: "app",
app: "docusign",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://account.docusign.com/oauth/userinfo`,
headers: {
Authorization: `Bearer ${this.docusign.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
attractwell: {
type: "app",
app: "attractwell",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.attractwell.com/api/v1/campaigns`,
headers: {
Authorization: `Bearer ${this.attractwell.$auth.oauth_access_token}`,
},
})
},
})