with Signable and DocuSeal?
The Signable API allows for the automation of electronic signature processes. Integrating this API into Pipedream workflows enables users to create, send, and manage documents that require signatures, streamlining the handling of contracts and agreements. By leveraging this API, you can automate notifications, sync data with other services, or initiate signature requests as part of larger automated business processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
signable: {
type: "app",
app: "signable",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.signable.co.uk/v1/users`,
auth: {
username: `${this.signable.$auth.api_key}`,
password: `x`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
docuseal: {
type: "app",
app: "docuseal",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.docuseal.$auth.url}/submissions`,
headers: {
"X-Auth-Token": `${this.docuseal.$auth.api_key}`,
},
})
},
})