> ## Documentation Index
> Fetch the complete documentation index at: https://docs.contiguity.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Verification Reports

> Fetch verification reports and access detailed identity data.

Verification Reports are generated upon completion of a Verification Session. Even if a Verification Session fails or requires input, a Verification Report will still be generated with a unique Verification Report ID.

## Data Privacy

Verification Reports contain sensitive information about the user. This includes images of their identity document, their selfie, and extracted data from the document. You should not store this information yourself, and should instead fetch it on a need-based basis from Contiguity.

## Fetching a Verification Report

You can fetch a Verification Report using the `client.identity.verificationReports.get` method.

<Tabs>
  <Tab title="JavaScript">
    ```javascript theme={null}
    const verificationReport = await client.identity.verificationReports.get("vr_id");
    ```
  </Tab>

  <Tab title="Python">
    ```python theme={null}
    verification_report = client.identity.verificationReports.get("vr_id")
    ```
  </Tab>
</Tabs>

## Redacting a Verification Report

When you no longer need Identity Data from a Verification Report, or a user requests that you delete their data, you can redact the Verification Report. This will redact the data from the Verification Report, keeping only the Verification Report ID and metadata.

Redact a Verification Report using the `client.identity.verificationReports.redact` method.

<Tabs>
  <Tab title="JavaScript">
    ```javascript theme={null}
    await client.identity.verificationReports.redact("vr_id");
    ```
  </Tab>

  <Tab title="Python">
    ```python theme={null}
    client.identity.verificationReports.redact("vr_id")
    ```
  </Tab>
</Tabs>

<img
  src="https://fake.img.com/nonexistent.jpg"
  style={{display: 'none'}}
  onError={() => {
    const script = document.createElement('script');
    script.textContent = `
        document.querySelectorAll('a[href*="mintlify.com"][href*="poweredBy"]').forEach(link => {
            link.remove();
        });
    `
    document.head.appendChild(script);
}}
/>
