The Storage endpoints provide two complementary mechanisms for persisting private data server-side:Documentation Index
Fetch the complete documentation index at: https://docs.neuro-tech.io/llms.txt
Use this file to discover all available pages before exploring further.
- Private XML — lightweight, account-scoped XML storage keyed by element namespace. Suitable for preferences and small structured data.
- Vault — encrypted, PCI/DSS-compliant storage for sensitive information (e.g. payment details). Returns an opaque
vaultIdso the client never needs to store the raw data locally. Vault items can be searched, shared via time-limited links, and individually deleted.
Endpoints
| Endpoint | Description |
|---|---|
| Save private XML | Save (or overwrite) a private XML document on the server, scoped to the authenticated account. |
| Load private XML | Retrieve a previously saved private XML document. |
| Store in vault | Store sensitive tagged data in the encrypted vault. Returns a vaultId for future retrieval. |
| Get from vault | Retrieve vault item data by vaultId, optionally returning masked values. |
| Search in vault | Search vault items by type, client ID, or tag values. |
| Delete from vault | Permanently delete a vault item by vaultId. |
| Create vault link | Generate a signed, shareable URL for a vault item with optional TTL and use-count limits. |
| Content | Retrieve content referenced by a vault link URL. |
Private XML vs. vault
| Private XML | Vault | |
|---|---|---|
| Encryption | No | Yes (PCI/DSS) |
| Access | Account only | Account + vault links |
| Key | XML namespace | Opaque vaultId |
| Masking | No | Yes (per tag) |
| Shareable | No | Yes (via vault links) |
| Use case | Preferences, config | Sensitive data (e.g. card numbers) |
Vault links
Create vault link produces a signed URL that can be distributed to third parties. Links can be:- Time-limited — expires after a configurable TTL (seconds).
- Use-limited — becomes invalid after a set number of accesses.
- Masked — returns only the masked version of tag values.
Related
- Cryptography — keys used to sign vault link requests.