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

# Get Merge Conflict

> Retrieve detailed information about a specific merge conflict.

Get complete details about a memory merge conflict including the proposed memory content,
conflicting existing memories, and clarifying questions to help resolve the conflict.

**Path Parameters:**
- `custom_user_id` (str): Unique identifier for the user owning the merge conflict
- `conflict_id` (UUID): Merge conflict UUID to retrieve

**Returns:**
- `conflict` (MergeConflictInfo): Conflict details with proposed_memory_content, conflicting_memories, clarifying_questions, status, and timestamps



## OpenAPI

````yaml https://api.recallrai.com/api/openapi.json get /api/v1/users/{custom_user_id}/merge-conflicts/{conflict_id}
openapi: 3.1.0
info:
  title: api-backend
  description: This powers the Recallr AI API Backend
  version: 0.1.0
servers:
  - url: https://api.recallrai.com
    description: Production server
security: []
paths:
  /api/v1/users/{custom_user_id}/merge-conflicts/{conflict_id}:
    get:
      tags:
        - Merge Conflicts
      summary: Get Merge Conflict
      description: >-
        Retrieve detailed information about a specific merge conflict.


        Get complete details about a memory merge conflict including the
        proposed memory content,

        conflicting existing memories, and clarifying questions to help resolve
        the conflict.


        **Path Parameters:**

        - `custom_user_id` (str): Unique identifier for the user owning the
        merge conflict

        - `conflict_id` (UUID): Merge conflict UUID to retrieve


        **Returns:**

        - `conflict` (MergeConflictInfo): Conflict details with
        proposed_memory_content, conflicting_memories, clarifying_questions,
        status, and timestamps
      operationId: >-
        get_merge_conflict_api_v1_users__custom_user_id__merge_conflicts__conflict_id__get
      parameters:
        - name: custom_user_id
          in: path
          required: true
          schema:
            type: string
            description: Custom user ID owning the merge conflict
            title: Custom User Id
          description: Custom user ID owning the merge conflict
        - name: conflict_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            description: ID of the merge conflict to retrieve
            title: Conflict Id
          description: ID of the merge conflict to retrieve
        - name: X-Recallr-Project-Id
          in: header
          required: true
          schema:
            type: string
            format: uuid
            title: X-Recallr-Project-Id
        - name: X-Recallr-Api-Key
          in: header
          required: true
          schema:
            type: string
            title: X-Recallr-Api-Key
      responses:
        '200':
          description: Merge conflict retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetMergeConflictResponse'
        '401':
          description: Authentication required
        '404':
          description: User or merge conflict not found
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '500':
          description: Internal server error
components:
  schemas:
    GetMergeConflictResponse:
      properties:
        conflict:
          $ref: '#/components/schemas/MergeConflictInfo'
      type: object
      required:
        - conflict
      title: GetMergeConflictResponse
      description: Response containing merge conflict details.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    MergeConflictInfo:
      properties:
        conflict_id:
          type: string
          format: uuid
          title: Conflict Id
        project_user_session_id:
          type: string
          format: uuid
          title: Project User Session Id
        proposed_memory_content:
          anyOf:
            - type: string
            - type: 'null'
          title: Proposed Memory Content
        new_memories:
          anyOf:
            - items:
                $ref: '#/components/schemas/MergeConflictNewMemory'
              type: array
            - type: 'null'
          title: New Memories
        conflicting_memories:
          items:
            $ref: '#/components/schemas/MergeConflictConflictingMemory'
          type: array
          title: Conflicting Memories
        clarifying_questions:
          items:
            $ref: '#/components/schemas/MergeConflictQuestion'
          type: array
          title: Clarifying Questions
        status:
          $ref: '#/components/schemas/MemoryMergeConflictStatus'
        resolution_data:
          anyOf:
            - $ref: '#/components/schemas/UserResponseMergeConflictQuestionAnswers'
            - type: 'null'
        created_at:
          type: string
          format: date-time
          title: Created At
        resolved_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Resolved At
      type: object
      required:
        - conflict_id
        - project_user_session_id
        - conflicting_memories
        - clarifying_questions
        - status
        - resolution_data
        - created_at
        - resolved_at
      title: MergeConflictInfo
      description: Information about a merge conflict.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    MergeConflictNewMemory:
      properties:
        memory_id:
          type: string
          format: uuid
          title: Memory Id
        content:
          type: string
          title: Content
        event_date_start:
          type: string
          format: date-time
          title: Event Date Start
        event_date_end:
          type: string
          format: date-time
          title: Event Date End
        created_at:
          type: string
          format: date-time
          title: Created At
      type: object
      required:
        - memory_id
        - content
        - event_date_start
        - event_date_end
        - created_at
      title: MergeConflictNewMemory
      description: A resolved memory from a merge conflict.
    MergeConflictConflictingMemory:
      properties:
        memory_id:
          type: string
          format: uuid
          title: Memory Id
        content:
          type: string
          title: Content
        reason:
          type: string
          title: Reason
        event_date_start:
          type: string
          format: date-time
          title: Event Date Start
        event_date_end:
          type: string
          format: date-time
          title: Event Date End
        created_at:
          type: string
          format: date-time
          title: Created At
      type: object
      required:
        - memory_id
        - content
        - reason
        - event_date_start
        - event_date_end
        - created_at
      title: MergeConflictConflictingMemory
      description: Memory involved in a merge conflict.
    MergeConflictQuestion:
      properties:
        question:
          type: string
          title: Question
        options:
          items:
            type: string
          type: array
          title: Options
      type: object
      required:
        - question
        - options
      title: MergeConflictQuestion
      description: Generated clarifying question for merge conflict resolution.
    MemoryMergeConflictStatus:
      type: string
      enum:
        - PENDING
        - IN_QUEUE
        - RESOLVING
        - RESOLVED
        - FAILED
      title: MemoryMergeConflictStatus
    UserResponseMergeConflictQuestionAnswers:
      properties:
        question_answers:
          items:
            $ref: '#/components/schemas/UserResponseMergeConflictQuestion'
          type: array
          title: Question Answers
      type: object
      required:
        - question_answers
      title: UserResponseMergeConflictQuestionAnswers
    UserResponseMergeConflictQuestion:
      properties:
        question:
          type: string
          title: Question
        answer:
          type: string
          title: Answer
        message:
          anyOf:
            - type: string
            - type: 'null'
          title: Message
      type: object
      required:
        - question
        - answer
      title: UserResponseMergeConflictQuestion

````