Crego APIs
APIs DocHome Page
Web Apps
  • Jupiter
  • Venus
APIs DocHome Page
Web Apps
  • Jupiter
  • Venus
  1. Contact
  • Omni
  • Contact APIs
  • NameSpace
    • Create
      POST
    • Update
      PATCH
    • List
      GET
    • Delete
      DELETE
  • Address
    • Create
      POST
    • Update
      PATCH
    • List
      GET
    • Retrieve
      GET
    • Delete
      DELETE
  • Bank
    • Create
      POST
    • Update
      PATCH
    • List
      GET
    • Retrieve
      GET
    • Delete
      DELETE
  • Props
    • Update Props
      PUT
    • Get Props
      GET
    • Delete Props
      DELETE
  • Relation
    • Create
    • Update
    • List
    • Retrieve
    • Delete
  • Contact
    • Create
      POST
    • Update
      PATCH
    • List
      GET
    • Retrieve
      GET
    • Dedupe
      POST
    • Active
      PUT
    • Inactive
      PUT
    • Reject
      PUT
    • Approve
      PUT
  1. Contact

Dedupe

Developing
preprod
https://preprod.api.crego.io
preprod
https://preprod.api.crego.io
POST
/contacts/check_dedupe/
Last modified:2025-04-22 07:21:33

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json
object {0}
Example
{
    "name": "Nikhil",
    "status": "active",
    "type": "individual",
    "tags": [
        "string"
    ],
    "refs": {},
    "branch": "",
    "detail": {
        "dob": "1997-08-09",
        "mobile": "9859795988",
        "email": "nikhil@yahoo.com",
        "gender": "male",
        "father_name": "Vikram",
        "mother_name": "Latha"
    }
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://preprod.api.crego.io/contacts/check_dedupe/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "Nikhil",
    "status": "active",
    "type": "individual",
    "tags": [
        "string"
    ],
    "refs": {},
    "branch": "",
    "detail": {
        "dob": "1997-08-09",
        "mobile": "9859795988",
        "email": "nikhil@yahoo.com",
        "gender": "male",
        "father_name": "Vikram",
        "mother_name": "Latha"
    }
}'

Responses

🟢200OK
application/json
Body
tag
string 
required
remark
string 
required
Example
{"tag":"DUPLICATE_CONTACT","remark":"This is a duplicate of Contact ID 01JMH5RK91QB2WKRE67D1F32YS"}
Previous
Retrieve
Next
Active
Built with