Pii Support
# support
p
Is there a way to mask out the name so that it does not gets sent to transcriber or model? @Vapi @Vapi Support Bot
c
Hi there, Thank you for your message. Our team is currently out of the office. We operate Monday through Friday, from 9:00 AM to 8:00 PM Pacific Standard Time (PST). We’ll get back to you as soon as possible during our normal business hours. If your message is urgent, please mark it accordingly or include “URGENT” in the subject line, and we’ll do our best to respond promptly. Warm regards, Vapi Customer Support Team
v
Yes, you can mask out names (or other PII) before they reach the transcriber or model by enabling the
securityFilterPlan
in your assistant or call configuration. Here’s an example:
Copy code
json
"securityFilterPlan": {
  "enabled": true,
  "filters": [ /* specify PII filters here */ ],
  "mode": "sanitize",
  "replacementText": "[FILTERED]"
}
This will replace detected PII with
[FILTERED]
before processing. For advanced filtering (e.g., custom name patterns), you may need to define specific filters or consult Vapi support for further customization. Source: [Vapi API Reference - Create Phone Call](https://docs.vapi.ai/api-reference/calls/create-phone-call)