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

# Preview merge between two contacts

> Operacion: Preview merge between two contacts.



## OpenAPI

````yaml /generated/specs/clients.json get /api/v1/contact/merge-preview
openapi: 3.0.0
info:
  title: Raul API - Clientes
  description: Clientes, clientes padre, direcciones, contactos y activos asociados.
  version: 2.0.0
  contact: {}
servers:
  - url: https://api.raul.ugps.io
    description: Production
security: []
tags:
  - name: Clients
    description: Gestion de clientes
paths:
  /api/v1/contact/merge-preview:
    get:
      tags:
        - Contact
      summary: Preview merge between two contacts
      description: 'Operacion: Preview merge between two contacts.'
      operationId: ContactController_getMergePreview
      parameters:
        - name: primaryContactId
          required: true
          in: query
          schema:
            type: string
        - name: secondaryContactId
          required: true
          in: query
          schema:
            type: string
      responses:
        '200':
          description: Merge preview with both contacts and transfer counts
        '404':
          description: Contact not found
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Bearer token authentication

````