with SignWell and Workflow Max?
Harness the power of SignWell's API on Pipedream to automate the e-signature process and streamline document workflows. Integrate e-signatures into your business processes seamlessly, triggering actions based on document status, auto-filling templates with customer data, and syncing signed documents to your storage solutions. The SignWell API through Pipedream empowers you to create custom, scalable solutions for document management that save time and eliminate manual errors.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
signwell: {
type: "app",
app: "signwell",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.signwell.com/api/v1/me`,
headers: {
"X-Api-Key": `${this.signwell.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
workflow_max: {
type: "app",
app: "workflow_max",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.workflowmax2.com/me`,
headers: {
Authorization: `Bearer ${this.workflow_max.$auth.oauth_access_token}`,
"accept": `application/json`,
"account_id": `${this.workflow_max.$auth.account_id}`,
},
})
},
})