Online notary service
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
Notarize is an API that allows you to conduct secure and legally binding
eNotary transactions. This API enables you to easily integrate with your
existing applications to quickly and reliably create, notarize, and store
digital documents, products, or services around the world.
Notarize provides users with the ability to digitally notarize documents within
minutes. You can effectively sanitize your processes, eliminate manual and
paper-based steps, and verify your signer's identity all without leaving your
home or office.
Using Notarize's API, you can quickly and securely create a variety of services
and products, including but not limited to:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
notarize: {
type: "app",
app: "notarize",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.notarize.com/v1/transactions`,
headers: {
"ApiKey": `${this.notarize.$auth.api_key}`,
},
})
},
})
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})