AnonymizeRequest
objectRequest payload for the text anonymization endpoint.
Optional global settings for locale, confidence threshold, and consistency.
Show Child Parameters
Per-entity anonymization overrides keyed by entity type (for example: PERSON, PHONE_NUMBER, EMAIL_ADDRESS).
Raw input text containing sensitive data to anonymize.
AnonymizeSettings
objectGlobal processing options applied to the anonymization request.
Locale used during entity detection. Currently supported: en_US.
Default:en_US
Minimum analyzer confidence score (0.0 to 1.0).
Default:0.4
>= 0<= 1
Any OfOptional salt used for deterministic hashing across requests. When provided, it must be at least 16 bytes.
Default:
HTTPValidationError
objectShow Child Parameters
HashStrategy
objectHash detected values using SHA-256.
Operator type. Must be ‘hash’.
Default:hash
MaskStrategy
objectMask detected values by replacing part of the text with a masking character.
Operator type. Must be ‘mask’.
Default:mask
Character used to mask text.
Default:*
Number of characters to mask.
Default:5
>= 1
If true, masks characters from the end of the detected value.
Default:false