openapi: 3.0.3
info:
title: Verato Organization AddRelationshipService MergeIdentities API
version: 2026.1.2
description: 'The Verato Organization API provides comprehensive identity management capabilities for organizations within the Verato LINK platform. This API enables you to:
- **Ingest and manage organization identities**: Add, update, and delete organization records with rich demographic and contact information.
- **Search and query**: Find organizations using demographic data, native IDs, or link IDs (Verato''s golden identifier).
- **Lifecycle management**: Soft-delete and restore organization records while preserving data history.
- **Merge and link operations**: Consolidate duplicate organizations, manage master data relationships, and maintain data lineage.
- **Relationship management**: Define and query relationships between organizations (parent-child, affiliations, etc.).
- **Notifications**: Track and audit identity changes and events across your organization data.
All operations follow a standard request/response envelope pattern with audit tracking, error handling, and optional response format customization.
'
servers:
- url: https://yourveratodomain.com/org-link-ws/svc
description: Production Organization Link API
- url: https://yourveratodomain.com/org-link-ws/svc
description: Sandbox Organization Link API
security:
- basicAuth: []
tags:
- name: MergeIdentities
paths:
/mergeIdentities:
post:
summary: Merge two identities (mergeIdentities)
description: 'Merges a "toRetire" source identity into a "toSurvive" source identity. After a merge, the retired source is marked as merged and the surviving identity contains combined data. The response returns the surviving linkId.
'
operationId: mergeIdentities
requestBody:
required: true
description: The merge identities request.
content:
application/json:
schema:
$ref: '#/components/schemas/ServiceRequest_mergeIdentities'
responses:
'200':
description: Successful merge identities operation.
content:
application/json:
schema:
$ref: '#/components/schemas/ServiceResponse_mergeIdentities'
tags:
- MergeIdentities
components:
schemas:
Source:
type: object
description: Tracks an identity to a particular source system and record ID.
properties:
date:
type: string
description: The date of the source data in ISO format (yyyy-MM-dd).
name:
type: string
description: Name of the data source. Must be unique across Verato.
id:
type: string
description: ID of an identity within the given data source.
MergeIdentitiesWsResponse:
type: object
description: 'Response to a merge identities request, returning the surviving link ID
and surviving source information.
'
properties:
linkId:
type: string
description: link ID of the surviving identity.
toSurviveSource:
description: Original source information for the surviving identity.
$ref: '#/components/schemas/Source'
MergeIdentitiesWsRequest:
type: object
description: 'Request to merge (retire) one source identity into another, creating a
single surviving identity.
'
required:
- toRetireSource
- toSurviveSource
properties:
toSurviveSource:
description: Source representing the identity that will survive.
$ref: '#/components/schemas/Source'
toRetireSource:
description: Source representing the identity that will be retired.
$ref: '#/components/schemas/Source'
ServiceRequest_mergeIdentities:
type: object
properties:
content:
$ref: '#/components/schemas/MergeIdentitiesWsRequest'
trackingId:
type: string
ServiceResponse_mergeIdentities:
type: object
properties:
auditId:
type: string
success:
type: boolean
warnings:
type: array
items:
type: string
retryableError:
type: boolean
message:
type: string
content:
$ref: '#/components/schemas/MergeIdentitiesWsResponse'
errors:
type: array
items:
type: string
trackingId:
type: string
securitySchemes:
basicAuth:
type: http
scheme: basic