Notarize

Online notary service

Integrate the Notarize API with the Data Stores API

Setup the Notarize API trigger to run a workflow which integrates with the Data Stores API. Pipedream's integration platform allows you to integrate Notarize and Data Stores remarkably fast. Free for developers.

Add or update a single record with the Data Stores API

Add or update a single record in your Pipedream Data Store.

 
Try it
Add or update multiple records with the Data Stores API

Add or update multiple records to your Pipedream Data Store.

 
Try it
Append to record with the Data Stores API

Append to a record in your data store Pipedream Data Store. If the record does not exist, a new record will be created in an array format.

 
Try it
Check for existence of key with the Data Stores API

Check if a key exists in your Pipedream Data Store or create one if it doesn't exist.

 
Try it
Delete a single record with the Data Stores API

Delete a single record in your Pipedream Data Store.

 
Try it

Overview of Notarize

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:

  • Digitally signed legal contracts
  • Online loans and rental agreements
  • Notarized wills and trusts
  • Digital passports and visas
  • Interstate marriages
  • Real estate transactions
  • Notarized medical documents
  • Charity and campaign donations
  • Financing and equity documents
  • IPO and M&A documents

Connect Notarize

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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}`,
      },
    })
  },
})

Overview of Data Stores

With the Data Stores API, you can build applications that:

  • Store data for later retrieval
  • Retrieve data from a store
  • Update data in a store
  • Delete data from a store

Connect Data Stores

1
2
3
4
5
6
7
8
9
10
11
export default defineComponent({
  props: {
    myDataStore: {
      type: "data_store",
    },
  },
  async run({ steps, $ }) {
    await this.myDataStore.set("key_here","Any serializable JSON as the value")
    return await this.myDataStore.get("key_here")
  },
})