Person Merges
Get All Person Merges
Retrieve paginated person merges for the organization.
Returns all person merges initiated by users in your organization, including their current status, the persons involved, and merge details. You can filter person merges using the filter query parameter. The filter parameter is a string that you can specify conditions based on the following properties:
| Property Name | Type | Allowed Operators | Examples |
|---|---|---|---|
| status | enum | = | status=in-progress, status=success, status=failed |
| taskId | text | = | taskId=789e0123-e45b-67c8-d901-234567890123 |
Person merges are returned in reverse chronological order (most recent first).
Requires the "Manage duplicates" permission and organization admin role.
get/v2/person-merges
Query parameters
cursorstring
Cursor for the next or previous page
limitinteger
Number of items to include in the page
filterstring
Filter person merges using Affinity Filtering Language
Response
OK
Example response
{
"data": [
{
"id": 12345,
"status": "success",
"taskId": "789e0123-e45b-67c8-d901-234567890123",
"startedAt": "2025-06-03T10:30:00Z",
"primaryPersonId": 12345,
"duplicatePersonId": 67890,
"completedAt": "2025-06-03T10:32:15Z",
"errorMessage": "Primary person not found"
}
],
"pagination": {
"prevUrl": "https://api.affinity.co/v2/foo?cursor=ICAgICAgYmVmb3JlOjo6Nw",
"nextUrl": "https://api.affinity.co/v2/foo?cursor=ICAgICAgIGFmdGVyOjo6NA"
}
}