Online notary service
Run any Go code and use any Go package available with a simple import. Refer to the Pipedream Go 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}`,
},
})
},
})
package main
import (
"fmt"
pd "github.com/PipedreamHQ/pipedream-go"
)
func main() {
// Access previous step data using pd.Steps
fmt.Println(pd.Steps)
// Export data using pd.Export
data := make(map[string]interface{})
data["name"] = "Luke"
pd.Export("data", data)
}