vault_tokenize
Securely replaces sensitive plaintext values with vault tokens, enabling reversible detokenization while preserving data utility. Supports deterministic tokenization for consistent token mapping.
Instructions
Tokenize plaintext values using ALTR vaulted tokenization.
Replaces plaintext strings with vault tokens
(format: vaultd_XXXX...). Tokens are stored in the ALTR vault
and can be detokenized later. Deterministic tokenization produces
the same token for the same input value.
Rate-limited to 492 requests/month and 50 requests/second. Maximum 4096 values per call. Each value must be under 1024 characters.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| values | Yes | Dict mapping user-defined keys to plaintext strings to tokenize (e.g. {"ssn": "123-45-6789", "email": "user@example.com"}). | |
| deterministic | No | If True, the same plaintext always produces the same token. Default False (random token each time). |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||