Skip to content

Latest commit

 

History

History
67 lines (44 loc) · 4.66 KB

File metadata and controls

67 lines (44 loc) · 4.66 KB

Zero Data Retention on Azure Open AI - Overview

GitHub Cloud2BR OSS - Learning Hub

Last updated: 2026-01-29


List of References (Click to expand)

ZDR - Microsoft is committed to not retaining any customer requests or response data beyond what is strictly necessary for real-time processing. Once the data has fulfilled its intended purpose, it is promptly deleted, ensuring that prompts and completions are not stored for training, debugging, or analytics purposes.

flow-3

From How does Foundry process data to provide Azure Direct Models?

How can a customer verify if data storage for abuse monitoring is off?

Once approval is granted, data storage for abuse monitoring will be disabled. You can confirm this status using the Azure portal or Azure CLI. For further details, please consult the documentation here: How can a customer verify if data storage for abuse monitoring is off?

Using Azure CLI:

az cognitiveservices account show -n resource\_name -g resource \_group

Note

The system will return a JSON response. If abuse monitoring logging is disabled, you will find a value labeled ContentLogging, which will be set to FALSE.

Using Azure Portal:

For example: In my Azure OpenAI instance, I'm not able to find the ContentLogging attribute. This attribute is only visible when set to false, indicating that abuse monitoring has been disabled. In this case, for me is on.

image image

When it is set to off, you should be able to view the following:

{
    "name":"ContentLogging",
    "value":"false"
}

Tip

In essence, data storage for abuse monitoring is off means the same thing as Zero Data Retention (ZDR) with abuse monitoring disabled, but the terminology depends on the platform:

  • On the OpenAI platform, ZDR guarantees that prompts and completions are not saved or used for training purposes. But, abuse monitoring may require temporary data storage to identify harmful activity. If you have ZDR approval and have opted out of abuse monitoring, then your data will not be stored for this purpose.
  • From the Azure OpenAI standpoint, Azure does not use the term ZDR, and by default, prompts and completions are not stored for training purposes. Regarding abuse monitoring, it is enabled by default and may require temporary data storage. But, we can request to disable this storage, which also turns off abuse monitoring data storage.
Total views

Refresh Date: 2026-04-07