Simplify document signing with Papersign, so you can spend less time in email chains and more time on the important stuff.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
papersign: {
type: "app",
app: "papersign",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.paperform.co/v1/papersign/documents`,
headers: {
Authorization: `Bearer ${this.papersign.$auth.access_token}`,
"accept": `application/json`,
},
})
},
})
Dispatches a document to a specified recipient. See the documentation
Papersign uses API keys for authentication. When you connect your Papersign account, Pipedream securely stores the keys so you can easily authenticate to Papersign APIs in both code and no-code steps.