forked from vocodedev/vocode-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
hipaa compliance docs (vocodedev#390)
* adds hipaa compliance docs * update hipaa doc
- Loading branch information
Showing
2 changed files
with
25 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
title: "HIPAA Compliance" | ||
--- | ||
|
||
The `hipaa_compliant` flag in the Vocode outbound calls API configures the system to not | ||
persist any potentially sensitive information. Turning on the flag makes the API supportable for use-cases requiring HIPAA compliance. | ||
|
||
In particular, turning on the flag: | ||
|
||
- Redacts the content of the prompt on the `calls` resource | ||
- Prevents the transcript from being written to the `calls` resource | ||
- Configures the call not to be recorded | ||
|
||
# Turning on the flag | ||
|
||
```python | ||
vocode_client.calls.create_call( | ||
from_number="<YOUR VOCODE NUMBER>", | ||
to_number="15555555555", | ||
agent=..., | ||
hipaa_compliant=True | ||
) | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters