EaserixDocs
DevelopersAPI referenceSignNotary

Import a state registry (operator)

Upserts registry rows for a state (1-5000 per call) and records a registry_syncs row. Gated by NOTARY_ADMIN_EMAILS — 403 for everyone else. Existing rows refresh registry facts only; claimed profiles keep their edited fields. registryAddress is stored for claim verification and never rendered.

View as Markdown
POST
/v1/notary/admin/import
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/v1/notary/admin/import" \  -H "Content-Type: application/json" \  -d '{    "state": "string",    "rows": [      {        "fullName": "string",        "commissionNumber": "string"      }    ]  }'
{  "imported": 0,  "updated": 0}