Skip to main content

Overview

Some registers do not serve their data to a third party. They serve it to you, under your own account, and log the access on their side. Two cases exist:
  • Access-gated registers. The register only grants access to the obliged entity performing the check. Germany’s Transparenzregister works this way: without your own login, the data cannot be retrieved at all.
  • Enrichment registers. Topograph can always return the public view, but an account holding elevated roles at the register sees more. France’s INPI works this way: accounts authorised for the beneficial-owner register get un-redacted personal fields.
For both cases you store your own register login in Topograph’s credential vault. Credentials are held per workspace, so a reseller can give each client workspace its own register account, and each client’s data stays attached to their own credential.

Per-Workspace Scope

Each workspace holds its own set of register logins, with fallback to the default workspace

Write-Only Storage

Credentials are encrypted on write. No endpoint and no screen ever returns them back

Isolated Results

Data fetched under your login is cached against your account only, never shared

Supported Registers

The list above is the current one. GET /v2/vault/sources is authoritative and also tells you the exact payload each register expects:
Response
Field names match the login form of the register itself, so what you type is what we send. Nothing is translated in between.

How Resolution Works

A credential is looked up from the workspace the request is tagged with, then from the default workspace if that workspace has none of its own. This gives you two working patterns:
Store the login on the default workspace and leave the other workspaces empty. Every workspace inherits it, so all requests run under the same register account. Use this when your organisation holds one register account and workspaces exist only for cost attribution.
Store a different login on each workspace. A request tagged client-alpha runs under the credential stored on client-alpha. Nothing is inherited, because the workspace has its own entry. Use this when you are a reseller and each of your clients is the obliged entity for their own checks.
Store a house login on the default workspace and add a specific one only on the workspaces that need it. Workspaces without their own entry fall back to the default. Deleting a workspace’s entry silently returns it to the inherited one.
Company requests resolve credentials from the workspace on the request. Search resolves them at account level, so a register login stored on any of your workspaces is used for search regardless of the workspace header.

Configuring a Credential

From the dashboard

Go to Workspaces in app.topograph.co, open a workspace and select Vault. Each supported register is listed with the fields it needs and shows whether a credential is currently configured. Managing credentials is restricted to admins of your organisation. Non-admin members do not see the screen.

From the API

Credentials are written with a PUT per register. The path names the workspace, so the entry always lands on the workspace you addressed:
Response
The response carries metadata only. The credential itself is never returned by any endpoint, so store your own copy before writing it.

Registers that accept several accounts

Where the register supports it, you can register more than one login. France’s INPI takes a pool: requests are spread across the accounts and fail over automatically when one is locked, expired, or rate-limited.
A pool is replaced as a whole. To add or remove one account, PUT the full list again.

Inspecting and Rotating

List what a workspace holds

The list shows only the entries the workspace owns. Inherited entries are not listed, so an empty array means “this workspace has nothing of its own”, not “no credential applies”.

Check one register

This one resolves the same way a request does, so it also reports inherited entries:
Response
When inheritedFromWorkspaceId is present, the credential comes from your default workspace rather than from the workspace you asked about. A 404 means neither the workspace nor the default has an entry for that register.

Rotate

Rotation is another PUT on the same source key. The new payload replaces the old one and version increments. There is no downtime window: requests already running finish on the credential they started with, and the next request picks up the new one.
Rotate before the register forces you to. Registers that lock an account after failed logins will keep locking it while an old password is still stored, so replace the entry first, then reset the password at the register if needed.

Delete

Deleting removes the workspace’s own entry. If the default workspace still holds one, the workspace goes back to inheriting it. If nothing remains, access-gated datapoints start returning account_configuration_required and enrichment registers revert to the public view.

What Happens Without a Credential

The datapoint fails on its own, with account_configuration_required as the error code. The rest of the request is unaffected and the other datapoints are returned normally.
Retrying will not help until a credential is stored. See Reliability & Errors for the full error contract.
The request succeeds and returns the public view of the data. For France that means UBO personal fields stay redacted, exactly as they are in the open data. Nothing in the response fails, so check the France page for what the enriched view adds on top.
A monitor on a company whose datapoints are credential-gated is still created, and the response names the affected datapoint in datapointNotices. That datapoint is skipped on scheduled rechecks instead of failing every day, and resumes automatically on the next check once you configure the credential. You get a monitor.datapoint_blocked webhook when it stops and monitor.datapoint_unblocked when it resumes.

Security and Isolation

Every credential is encrypted with AES-256-GCM under a per-entry key before it is written, and the encryption is bound to the account, workspace, source key and version it was written for, so a row cannot be replayed into another context. Plaintext exists only in memory, for the duration of the call to the register.
No endpoint returns a stored credential, including the one that wrote it. Reads return metadata only: which register, which format, which version, when it changed. The dashboard behaves the same way, showing a register as configured without displaying the secret.
Data retrieved under your credential is cached against your account alone. No other customer can be served a result that was fetched with your login, and you are never served one fetched with someone else’s. This keeps the access trail the register records on their side matching the data you actually received.
Moving between the public view and your own credential, or rotating the credential, always triggers a fresh fetch rather than reusing what was cached under the previous setup.

API Reference

Workspaces themselves are covered on the Workspaces page. If you have never created one, your account already has a default workspace and every credential you store lands there.