Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation.
Emit new event when a new version of an npm package is published. See the documentation
Emit new event when a document is signed by all recipients.
Add a recipient to an existing Documenso document. [See the documentation](See the documentation)
Create a new document in Documenso from a pre-existing template. See the documentation
Send a document within Documenso for signing. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
documenso: {
type: "app",
app: "documenso",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.documenso.$auth.url}/api/v1/documents`,
headers: {
"Authorization": `${this.documenso.$auth.api_token}`,
},
})
},
})