Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation.
Emit new event when all signers have filled in and signed the document. 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 has been updated. See the documentation
Creates a new document copy out of a template. See the documentation
Adds values to fields that the signers can later edit when they receive the document for signature. See the documentation
Creates and sends a field invite to sign a document. See the documentation
Uploads a file that contains SignNow text tags. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
signnow: {
type: "app",
app: "signnow",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.signnow.com/user`,
headers: {
Authorization: `Bearer ${this.signnow.$auth.oauth_access_token}`,
},
})
},
})