import { 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`,
},
})
},
})
Duplicates a given document. See the documentation
Retrieve a document using a specified ID. See the documentation
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.