Skip to main content
PATCH
/
api
/
organizations
/
{organizationId}
/
contact-dedup-reviews
/
{reviewId}
/
keep-separate
Mark a contact dedup review as kept separate
curl --request PATCH \
  --url https://your-instance.example.com/api/organizations/{organizationId}/contact-dedup-reviews/{reviewId}/keep-separate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "resolution": {}
}
'
{
  "success": true,
  "message": "<string>",
  "data": {
    "reviewSource": "fuzzy_match",
    "status": "needs_review",
    "_id": "<string>",
    "organizationId": "<string>",
    "sourceContactId": "<string>",
    "candidateContactId": "<string>",
    "score": 123,
    "thresholdSnapshot": {},
    "fieldBreakdown": {},
    "sourceSnapshot": {},
    "candidateSnapshot": {},
    "resolution": {},
    "resolvedBy": "<string>",
    "resolvedAt": "2023-11-07T05:31:56Z",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

organizationId
string
required
reviewId
string
required

Body

application/json
resolution
object

Response

Contact dedup review marked as kept separate

success
enum<boolean>
required
Available options:
true
message
string
required
data
object
required