Electronic Signature and Agreement Cloud (for developers)
Creates a signature request from a template See the documentation
The DocuSign Developer API enables automation around electronic agreements, signatures, and approval processes. It's a powerful tool for streamlining document workflows, allowing you to create, send, and manage documents programmatically. With Pipedream, you can harness this capability to integrate DocuSign seamlessly with other services, triggering actions based on document status, automating follow-ups, syncing data with CRM systems, and more.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
docusign_developer: {
type: "app",
app: "docusign_developer",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://account-d.docusign.com/oauth/userinfo`,
headers: {
Authorization: `Bearer ${this.docusign_developer.$auth.oauth_access_token}`,
},
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.