Skip to main content
PATCH
/
api
/
contacts
/
dedup-reviews
/
{reviewId}
/
keep-separate
Resolve a dedup review by keeping the pair separate
curl --request PATCH \
  --url https://your-instance.example.com/api/contacts/dedup-reviews/{reviewId}/keep-separate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "resolution": {
    "firstName": "candidate",
    "lastName": "candidate",
    "email": "source"
  }
}
'
{
  "success": true,
  "message": "Review kept separate",
  "data": {
    "_id": "64f0a1b2c3d4e5f6a7b8ca30",
    "status": "kept_separate"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.tetherai.ca/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

reviewId
string
required

Body

application/json
resolution
object

Free-form resolution payload persisted on the review (e.g. fieldChoices map of source/candidate selections that drive the merge).

Response

Review kept separate

success
enum<boolean>
required
Available options:
true
message
string
data
object
Example:
{
"_id": "64f0a1b2c3d4e5f6a7b8ca30",
"organizationId": "64f0a1b2c3d4e5f6a7b8c9d3",
"sourceContactId": "64f0a1b2c3d4e5f6a7b8c9d0",
"candidateContactId": "64f0a1b2c3d4e5f6a7b8ca31",
"reviewSource": "fuzzy_match",
"status": "needs_review",
"score": 0.87,
"createdAt": "2026-05-10T12:00:00.000Z"
}