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

# PII access log

> Recent per-field unmask history for this investor — who revealed which field, when. Requires pii:read.



## OpenAPI

````yaml /openapi.yaml get /api/investors/v1/:id/pii-access
openapi: 3.0.3
info:
  title: MF Atlas API
  version: 1.0.0
servers:
  - description: Sandbox
    url: https://api-sandbox.mf-atlas.space
  - description: Production
    url: https://api.mf-atlas.space
security: []
paths:
  /api/investors/v1/:id/pii-access:
    get:
      tags:
        - investors
      summary: PII access log
      description: >-
        Recent per-field unmask history for this investor — who revealed which
        field, when. Requires pii:read.
      parameters:
        - description: ''
          in: path
          name: id
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  actor:
                    type: string
                  at:
                    type: string
                  field:
                    type: string
                  reason:
                    type: string
                  request_id:
                    type: string
                type: object
          description: Access log

````