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

# Reporte de resumen de reclamos DICT (solo COUNT)

> Devuelve buckets COUNT(*) agrupados por (claimType, status) sobre los reclamos solicitados en una ventana de fechas obligatoria (máx. 92 días), más el COUNT de los reclamos actualmente abiertos que superaron su plazo de 7 días. Solo COUNT. Los resúmenes de infracción están fuera de alcance.



## OpenAPI

````yaml es/openapi/v3-current/spi-dict.yaml get /api/v1/dict/reports/claims-summary
openapi: 3.1.0
info:
  contact:
    email: contact@lerian.studio
    name: Lerian Studio
    url: https://lerian.studio
  description: >-
    Interfaz OpenAPI 3.1 de la capacidad DICT (Diretório de Identificadores de
    Contas Transacionais) de Lerian SPI, la integración directa entre la
    institución y el Sistema de Pagos Instantáneos Brasileño (SPI/Pix). Cubre el
    ciclo de vida de las claves PIX, los reclamos de portabilidad y titularidad,
    los reportes de infracción, las devoluciones, los marcadores de fraude, los
    reportes DICT síncronos y las operaciones internas de conciliación y
    aprovisionamiento que mantienen consistente el directorio de claves.
  license:
    name: Lerian Studio General License
  title: Lerian SPI — DICT API
  version: 1.0.0
servers:
  - url: https://spi.sandbox.lerian.net
security: []
tags:
  - description: >-
      Ciclo de vida de las claves PIX: registro, listado, búsqueda, consulta,
      eliminación y estadísticas.
    name: Keys
  - description: >-
      Reclamos de portabilidad y titularidad de claves PIX a lo largo de todo su
      ciclo de vida (iniciar, confirmar, rechazar, cancelar, reconocer,
      completar).
    name: Claims
  - description: 'Reportes de infracción DICT: crear, listar y recuperar.'
    name: Infractions
  - description: 'Solicitudes de devolución DICT: crear, listar y recuperar.'
    name: Refunds
  - description: 'Marcadores de fraude PIX: crear, listar y estadísticas.'
    name: Fraud Markers
  - description: >-
      Reportes síncronos sobre el propio registro DICT de Lerian SPI: resúmenes
      COUNT(*) de claves (por tipo/estado) y reclamos (por tipo/estado +
      vencidos sin resolver). Solo COUNT — DICT no retiene dinero.
    name: Reports
  - description: >-
      Operaciones internas de DICT: ejecuciones de conciliación,
      aprovisionamiento del ISPB del participante, procesamiento de plazos de
      reclamos y limpieza de claves huérfanas.
    name: Internal
paths:
  /api/v1/dict/reports/claims-summary:
    get:
      tags:
        - Reports
      summary: Reporte de resumen de reclamos DICT (solo COUNT)
      description: >-
        Devuelve buckets COUNT(*) agrupados por (claimType, status) sobre los
        reclamos solicitados en una ventana de fechas obligatoria (máx. 92
        días), más el COUNT de los reclamos actualmente abiertos que superaron
        su plazo de 7 días. Solo COUNT. Los resúmenes de infracción están fuera
        de alcance.
      operationId: getDICTReportClaimsSummary
      parameters:
        - description: Inclusive start of the report window (YYYY-MM-DD UTC). Required.
          explode: false
          in: query
          name: fromDate
          required: true
          schema:
            description: Inclusive start of the report window (YYYY-MM-DD UTC). Required.
            examples:
              - '2026-06-01'
            type: string
        - description: >-
            Inclusive end of the report window (YYYY-MM-DD UTC). Required. The
            window may not exceed 92 days.
          explode: false
          in: query
          name: toDate
          required: true
          schema:
            description: >-
              Inclusive end of the report window (YYYY-MM-DD UTC). Required. The
              window may not exceed 92 days.
            examples:
              - '2026-06-30'
            type: string
        - description: >-
            Optional: when true, adds the per-indirect-participant dimension to
            the COUNT(*) GROUP BY. COUNT-only either way.
          explode: false
          in: query
          name: groupByParticipant
          schema:
            description: >-
              Optional: when true, adds the per-indirect-participant dimension
              to the COUNT(*) GROUP BY. COUNT-only either way.
            examples:
              - false
            type: boolean
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DICTClaimsSummaryResponse'
          description: OK
        default:
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Detail'
          description: Error
      security:
        - BearerAuth: []
components:
  schemas:
    DICTClaimsSummaryResponse:
      additionalProperties: false
      properties:
        asOf:
          description: >-
            The instant the open-claims-past-deadline COUNT was evaluated (RFC
            3339 UTC).
          examples:
            - '2026-06-21T12:00:00Z'
          type: string
        buckets:
          description: >-
            COUNT(*) buckets grouped by (claimType, status) over claims
            requested in the window.
          items:
            $ref: '#/components/schemas/DICTClaimSummaryBucket'
          type:
            - array
            - 'null'
        countOnly:
          description: Always true — DICT summaries are COUNT-only (no monetary field).
          examples:
            - true
          type: boolean
        openClaimsPastDeadline:
          description: >-
            COUNT of currently-open claims whose 7-day deadline has passed (a
            count, never a position). Current-state, not window-filtered.
          examples:
            - 3
          format: int64
          type: integer
        window:
          $ref: '#/components/schemas/DICTReportWindowResponse'
          description: Echo of the resolved report window.
      required:
        - countOnly
        - buckets
        - openClaimsPastDeadline
        - asOf
        - window
      type: object
    Detail:
      additionalProperties: false
      properties:
        code:
          description: >-
            Stable, machine-readable domain error code scoped to the emitting
            service (format: <SERVICE>-NNNN).
          examples:
            - ERR-0001
          type: string
        detail:
          description: >-
            A human-readable explanation specific to this occurrence of the
            problem.
          examples:
            - Property foo is required but is missing.
          type: string
        errors:
          description: Optional list of individual error details
          items:
            $ref: '#/components/schemas/ErrorDetail'
          type:
            - array
            - 'null'
        instance:
          description: >-
            A URI reference that identifies the specific occurrence of the
            problem.
          examples:
            - https://example.com/error-log/abc123
          format: uri
          type: string
        status:
          description: HTTP status code
          examples:
            - 400
          format: int64
          type: integer
        title:
          description: >-
            A short, human-readable summary of the problem type. This value
            should not change between occurrences of the error.
          examples:
            - Bad Request
          type: string
        type:
          default: about:blank
          description: A URI reference to human-readable documentation for the error.
          examples:
            - https://example.com/errors/example
          format: uri
          type: string
      type: object
    DICTClaimSummaryBucket:
      additionalProperties: false
      properties:
        claimType:
          description: Claim type (OWNERSHIP/PORTABILITY).
          examples:
            - OWNERSHIP
          type: string
        claimerISPB:
          description: >-
            Claiming participant ISPB for this bucket; present only when
            groupByParticipant=true.
          examples:
            - '12345678'
          type: string
        count:
          description: Record COUNT for this bucket.
          examples:
            - 5
          format: int64
          type: integer
        status:
          description: >-
            Claim status
            (OPEN/WAITING_RESOLUTION/CONFIRMED/CANCELLED/COMPLETED).
          examples:
            - OPEN
          type: string
      required:
        - claimType
        - status
        - count
      type: object
    DICTReportWindowResponse:
      additionalProperties: false
      properties:
        fromDate:
          description: Inclusive window start (UTC).
          examples:
            - '2026-06-01'
          type: string
        toDate:
          description: Inclusive window end (UTC).
          examples:
            - '2026-06-30'
          type: string
      required:
        - fromDate
        - toDate
      type: object
    ErrorDetail:
      additionalProperties: false
      properties:
        location:
          description: >-
            Where the error occurred, e.g. 'body.items[3].tags' or
            'path.thing-id'
          type: string
        message:
          description: Error message text
          type: string
        value:
          description: The value at the given location
      type: object
  securitySchemes:
    BearerAuth:
      bearerFormat: JWT
      description: JWT bearer token issued by the identity provider.
      scheme: bearer
      type: http

````