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

# List Redaction Reports

> Lists redaction reports for the tenant, with optional filtering by status (Draft or Executed) and date range. Returns summary objects without affectedEntities or operationLog; retrieve individual reports by ID for full details. See the <a href="/developer-guides/redaction-services">Redaction Services Developer Guide</a> for auditing guidance.



## OpenAPI

````yaml /openapi/openapi_gdpr.json get /platform/data/redaction/report
openapi: 3.0.1
info:
  description: OpenAPI Spec for Kibo Redaction Service
  title: Redaction
  version: 0.0.1
servers:
  - description: Kibo Base URL
    url: '{baseUrl}/api'
    variables:
      baseUrl:
        default: https://t1000000.sb.usc1.gcp.kibocommerce.com
        description: Base URL
security:
  - bearerAuth: []
paths:
  /platform/data/redaction/report:
    get:
      tags:
        - Redaction
      summary: List Redaction Reports
      description: >-
        Lists redaction reports for the tenant, with optional filtering by
        status (Draft or Executed) and date range. Returns summary objects
        without affectedEntities or operationLog; retrieve individual reports by
        ID for full details. See the <a
        href="/developer-guides/redaction-services">Redaction Services Developer
        Guide</a> for auditing guidance.
      parameters:
        - in: query
          name: status
          schema:
            type: string
        - in: query
          name: page
          schema:
            format: int32
            type: integer
        - in: query
          name: pageSize
          schema:
            format: int32
            type: integer
        - in: query
          name: from
          schema:
            format: date-time
            type: string
        - in: query
          name: to
          schema:
            format: date-time
            type: string
        - description: limits which fields are returned in the response body
          in: query
          name: responseFields
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RedactionReportSummaryListResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/RedactionReportSummaryListResponse'
            text/plain:
              schema:
                $ref: '#/components/schemas/RedactionReportSummaryListResponse'
          description: OK
components:
  schemas:
    RedactionReportSummaryListResponse:
      properties:
        items:
          items:
            $ref: '#/components/schemas/RedactionReportSummaryResponse'
          nullable: true
          type: array
        pageSize:
          format: int32
          type: integer
        startIndex:
          format: int32
          type: integer
      type: object
    RedactionReportSummaryResponse:
      properties:
        auditInfo:
          $ref: '#/components/schemas/AuditInfoResponse'
        createdAt:
          format: date-time
          type: string
        errorSummary:
          nullable: true
          type: string
        executionCompletedAt:
          format: date-time
          nullable: true
          type: string
        executionStartedAt:
          format: date-time
          nullable: true
          type: string
        reportId:
          nullable: true
          type: string
        schemaVersion:
          format: int32
          type: integer
        status:
          nullable: true
          type: string
        subject:
          $ref: '#/components/schemas/SubjectResponse'
        tenantId:
          format: int32
          type: integer
      type: object
    AuditInfoResponse:
      properties:
        createBy:
          nullable: true
          type: string
        createDate:
          format: date-time
          type: string
        updateBy:
          nullable: true
          type: string
        updateDate:
          format: date-time
          nullable: true
          type: string
      type: object
    SubjectResponse:
      properties:
        customerAccountId:
          format: int32
          nullable: true
          type: integer
        resolvedEmailAddresses:
          items:
            type: string
          nullable: true
          type: array
        userId:
          nullable: true
          type: string
      type: object
  securitySchemes:
    bearerAuth:
      bearerFormat: JWT
      description: JWT Authorization header using the Bearer scheme.
      scheme: bearer
      type: http

````