v1

latestOpenAPI 3.0.3MIT2026-07-24122271451.2 KB
Notary

List Notaries

Retrieve a list of notaries associated with your organization.

Important Notes

  • At the moment, notaries can be added to organization only manually through the PandaDoc Notary UI.
  • Organization must have Notary addon enabled to use this endpoint
get/public/v2/notary/notaries

Query parameters

statusstring[]

Filter by status (comma-separated values supported). Valid values are INVITED, UNDER_REVIEW, ACTIVE, REJECTED, INACTIVE

commission_statestring[]

Filter by commission state (comma-separated values supported)

offsetinteger

Number of results to skip

limitinteger

Maximum number of results to return

order_by'email' | '-email' | 'status' | '-status' | 'name' | '-name'

Sort by name, email, or status (default is email). Use a - prefix for descending order (e.g., -email)

Response

List of notaries retrieved successfully

countinteger

Total number of notaries matching the criteria

Example response

{
  "results": [
    {
      "id": "nyAnVpY7pZ23FBve8s9xgk",
      "name": "John Doe",
      "status": "ACTIVE",
      "commission_state": "California"
    }
  ],
  "count": 5
}