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

# List PII audit records for a connector

> Return all PII audit log entries for a connector, newest first.

Populated when ``apply-introspection`` (or ``generate-transforms``) runs
and detects columns classified as 'drop' or 'hash'.
Returns an empty list when no PII was detected or transforms haven't run yet.



## OpenAPI

````yaml /api-reference/catalog-api.json get /connectors/{connector_id}/pii-audit
openapi: 3.1.0
info:
  title: Strattum Catalog API
  description: Expõe a estrutura do data lake — camadas, conectores e tabelas.
  version: 0.1.0
servers: []
security: []
paths:
  /connectors/{connector_id}/pii-audit:
    get:
      tags:
        - connectors
      summary: List PII audit records for a connector
      description: >-
        Return all PII audit log entries for a connector, newest first.


        Populated when ``apply-introspection`` (or ``generate-transforms``) runs

        and detects columns classified as 'drop' or 'hash'.

        Returns an empty list when no PII was detected or transforms haven't run
        yet.
      operationId: get_pii_audit_connectors__connector_id__pii_audit_get
      parameters:
        - name: connector_id
          in: path
          required: true
          schema:
            type: string
            title: Connector Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PiiAuditEntry'
                title: Response Get Pii Audit Connectors  Connector Id  Pii Audit Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PiiAuditEntry:
      properties:
        id:
          type: integer
          title: Id
        schema_name:
          type: string
          title: Schema Name
        table_name:
          type: string
          title: Table Name
        column_name:
          type: string
          title: Column Name
        classification:
          type: string
          title: Classification
        action:
          type: string
          title: Action
        pattern_matched:
          type: string
          title: Pattern Matched
        overridden_by_user:
          type: boolean
          title: Overridden By User
        generated_at:
          type: string
          title: Generated At
      type: object
      required:
        - id
        - schema_name
        - table_name
        - column_name
        - classification
        - action
        - pattern_matched
        - overridden_by_user
        - generated_at
      title: PiiAuditEntry
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````