List memory merge conflicts for a user with filtering and sorting.
When the system detects conflicting or contradictory memories, it creates merge conflicts that require user resolution. This endpoint retrieves all such conflicts with filtering options.
Path Parameters:
custom_user_id (str): Unique identifier for the userQuery Parameters:
offset (int): Number of records to skip for pagination. Default: 0limit (int): Maximum records to return. Range: 1-100. Default: 10status (MemoryMergeConflictStatus): Filter by status (PENDING, PROCESSING, PROCESSED, IN_QUEUE). Optionalsort_by (str): Sort field. Options: created_at, resolved_at. Default: created_atsort_order (str): Sort order. Options: asc, desc. Default: descReturns:
conflicts (List[MergeConflictInfo]): List of merge conflicts with clarifying questions and conflicting memory detailstotal (int): Total number of conflicts matching the filtershas_more (bool): Whether more conflicts are available beyond the current pageCustom user ID to list merge conflicts for
Number of records to skip
x >= 0Maximum number of records to return
1 <= x <= 100Filter by status
PENDING, IN_QUEUE, RESOLVING, RESOLVED, FAILED Sort field (created_at, resolved_at)
Sort order (asc, desc)