E-signatures & digital signing software
The Adobe Acrobat Sign API lets you embed e-signature processes into your custom applications, automate document workflows, and manage e-signatures. Specifically within Pipedream, you can harness this API to build serverless workflows that automate document signing requests, track status changes, and manage signed documents without ever leaving the platform. You can create workflows that trigger on various events, send out documents to be signed, and handle the responses—all programmatically.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
adobe_sign: {
type: "app",
app: "adobe_sign",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.adobe_sign.$auth.api_access_point}api/rest/v6/users/me`,
headers: {
Authorization: `Bearer ${this.adobe_sign.$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.