> ## 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.

# Listar credenciales de callback

> Lista las credenciales de callback del tenant llamante (activas y revocadas), más recientes primero. Devuelve solo metadatos — nunca el token ni su hash.



## OpenAPI

````yaml es/openapi/v3-current/matcher.yaml get /v1/exceptions/callbacks/credentials
openapi: 3.1.0
info:
  title: Matcher APIs
  description: >-
    Referencia completa de la API para el motor de conciliación Matcher, que
    proporciona conciliación automatizada de transacciones entre Midaz Ledger y
    sistemas externos.
  version: 4.1.0
  license:
    name: Elastic License 2.0
    url: https://www.elastic.co/licensing/elastic-license
servers:
  - url: https://matcher.sandbox.lerian.net
security: []
paths:
  /v1/exceptions/callbacks/credentials:
    get:
      tags:
        - Exception
      summary: Listar credenciales de callback
      description: >-
        Lista las credenciales de callback del tenant llamante (activas y
        revocadas), más recientes primero. Devuelve solo metadatos — nunca el
        token ni su hash.
      operationId: listCallbackCredentials
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListResponse'
          description: OK
        default:
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Detail'
          description: Error
      security:
        - BearerAuth: []
components:
  schemas:
    ListResponse:
      additionalProperties: false
      properties:
        credentials:
          description: >-
            Las credenciales de callback del tenant (activas y revocadas), más
            recientes primero. Solo metadatos — nunca el token ni el hash.
          items:
            $ref: '#/components/schemas/CredentialMetadata'
          type:
            - array
            - 'null'
      required:
        - credentials
      type: object
    Detail:
      additionalProperties: false
      properties:
        code:
          description: >-
            Código de error de dominio estable y legible por máquina con alcance
            al servicio emisor (formato: <SERVICE>-NNNN).
          examples:
            - ERR-0001
          type: string
        detail:
          description: >-
            Una explicación legible por humanos específica de esta ocurrencia
            del problema.
          examples:
            - Property foo is required but is missing.
          type: string
        errors:
          description: Lista opcional de detalles de errores individuales
          items:
            $ref: '#/components/schemas/ErrorDetail'
          type:
            - array
            - 'null'
        instance:
          description: >-
            Una referencia URI que identifica la ocurrencia específica del
            problema.
          examples:
            - https://example.com/error-log/abc123
          format: uri
          type: string
        status:
          description: Código de estado HTTP
          examples:
            - 400
          format: int64
          type: integer
        title:
          description: >-
            Un resumen breve y legible por humanos del tipo de problema. Este
            valor no debería cambiar entre ocurrencias del error.
          examples:
            - Bad Request
          type: string
        type:
          default: about:blank
          description: >-
            Una referencia URI a documentación legible por humanos para el
            error.
          examples:
            - https://example.com/errors/example
          format: uri
          type: string
      type: object
    CredentialMetadata:
      additionalProperties: false
      properties:
        createdAt:
          description: Hora de emisión (RFC 3339, UTC)
          type: string
        externalSystem:
          description: Etiqueta de sistema externo legible por el operador
          type: string
        id:
          description: ID sustituto de la credencial
          format: uuid
          type: string
        lastUsedAt:
          description: >-
            Cuándo esta credencial autenticó por última vez un callback entrante
            (RFC 3339, UTC); ausente hasta el primer uso
          type: string
        revokedAt:
          description: >-
            Cuándo se revocó esta credencial (RFC 3339, UTC); ausente si está
            activa
          type: string
        rotatedAt:
          description: >-
            Cuándo esta credencial reemplazó a una anterior mediante rotación
            (RFC 3339, UTC); ausente si se emitió nueva
          type: string
      required:
        - id
        - createdAt
      type: object
    ErrorDetail:
      additionalProperties: false
      properties:
        location:
          description: >-
            Dónde ocurrió el error, p. ej. 'body.items[3].tags' o
            'path.thing-id'
          type: string
        message:
          description: Texto del mensaje de error
          type: string
        value:
          description: El valor en la ubicación indicada
      type: object
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: 'Autenticación con token Bearer (formato: "Bearer {token}")'

````