DupeDetectRule

A single dupe detect rule.

More info: see the get operation and the dupe detect rules endpoint.

Fields

FieldDescription
id
int 
(required)

Unique ID

Example value:123
name
string 
(required)

Rule name

Example value:"name"
criteria
DupeDetectCriteria[] 
(required)

Criteria for matching

Any contact that matches all of these criteria is listed as a match

Example value:[ { "field": "email", "matcher": "exact" } ]
createdts
timestamp 
(required)

Created timestamp

Example value:"2014-09-26 15:24:36"
lastupdatets
timestamp 
(required)

Last updated timestamp

Example value:"2014-09-26 15:24:36"

Example

 1{
 2    "id": 123,
 3    "name": "name",
 4    "criteria": [
 5        {
 6            "field": "email",
 7            "matcher": "exact"
 8        }
 9    ],
10    "createdts": "2014-09-26 15:24:36",
11    "lastupdatets": "2014-09-26 15:24:36"
12}