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

# Returns a csv file containing all stored deletion logs of the last 3 years.



## OpenAPI

````yaml /openapi/chat-client.yaml get /deletion-logs/export-csv
openapi: 3.0.3
info:
  version: 1.0.0
  title: HealviChat Client API
servers:
  - url: https://{tenant_domain}/third-party/v1
    variables:
      tenant_domain:
        default: your-tenant.onhealvi.com
        description: Your tenant domain
security:
  - bearerAuth: []
paths:
  /deletion-logs/export-csv:
    get:
      tags:
        - deletion logs
      summary: >-
        Returns a csv file containing all stored deletion logs of the last 3
        years.
      responses:
        '200':
          description: Success
          content:
            text/csv:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DeletionLogCsvRow'
components:
  schemas:
    DeletionLogCsvRow:
      description: |
        Protocol about data that has been deleted.
      type: object
      properties:
        who:
          type: string
        what:
          type: string
        when:
          type: string
        how:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````