Skip to main content

Get Customer Dedupe Details

POST Customer Dedupe Details

This SynoFin API retrieves data to Customer Dedupe against various parameters provided by the user for the corresponding Loan ID.

URL: {{base_url}}/loan-management/v1/getDedupeDetails

Request: 

Request Type: POST
Authorization: Bearer Token
Customer Dedupe filters:

This is a list of all the parameters that can be used to retrieve individual Customer dedupe information. Their are mainly two way to perform this in SynoFin:

1. Base Filters :
Customer Dedupe Base Filters
S. No Attribute Key Data Type
1

Customer Name

customer_name String
2 Mobile Number mobile_number String
3 Customer Date of Birth customer_dob String
4 Customer Current Address current_address String
5 Customer Parmanent Address permanent_address String
6 Customer Guardian Name customer_guardian_name String
7 Customer PAN pan String
8 Customer Aadhar Card No aadhar String
9 Customer Voter ID voter_id String
10 Customer Passport passport String
11 Customer Driving License driving_license String
12 Customer Form 60 form_60 String
13 Customer TIN tin String
14 Customer Bank Account Number bank_account_number String
15 Customer Bank IFSC Code ifsc_code String
16 Customer Father Name customer_father_name String
2. Combination Filters:
Customer Dedupe Combination Filters
S. No Attribute Key Data Type
1

Customer Name And DOB

1. customer_name

2. customer_dob

String
2 Customer Name And Fathers Name

1. customer_name

2. customer_father_name

String
3 Bank Account Number and IFSC Code

1. bank_account_number

2. ifsc_code

String
4 Customer Name And Phone Number

1. customer_name

2. mobile_number

String
5 Customer Name And Guardian Name

1. customer_name

2. customer_guardian_name

String
6 Customer Name And Current Address

1. customer_name

2. current_address

String
7 Customer PAN And Aadhar

1. pan

2. aadhar

String
8 Customer Mobile Number and DOB

1. mobile_number

2. customer_dob

String
9 Customer Current address and Mobile Number

1. current_address

2. mobile_number

String
10 Customer Name, Current Address and Father Name

1. customer_name

2. current_address

3. customer_father_name

String
11 Customer Father name and Current Address

1. customer_father_name

2. current_address

String
12 Customer Name, Current Address and DOB

1. customer_name

2. current_address

3. customer_dob

String


Query Params:
Schema
Attribute Data Type Description Mandatory
dedupe_type String Type of Depude (customer / collateral Yes
dedupe_sub_type integer
No
dedupe_key String Depude Filter base parameter Yes
dedupe_percent double Percentage of Depude (Default "0") Yes
dedupe_params { Aleast One Params is required
customer_name String Filter against Customer Name No
mobile_number String Filter against Mobile Number No
customer_dob String Filter against Customer Dob No
current_address String Filter against Current Address No
permanent_address String Filter against Permanent Address No
guardian_name String Filter against Guardian Name No
pan String Filter against PAN No
aadhar String Filter against Aadhar No
voter_id String Filter against Voter Id No
passport String Filter against Passport No
driving_license String Filter against Driving License No
form_60 String Filter against Form 60 No
tin String Filter against TIN No
bank_account_number String Filter against Bank Account Number No
ifsc_code String Filter against IFSC code No
father_name String Filter against Father Name No
}


Body
{
    "dedupe_type": "customer",
    "dedupe_sub_type": null,
    "dedupe_key": "<Check Customer Dedupe Filters in the Document>",
    "dedupe_percent": "0",
    "dedupe_params": {
        "customer_name" : "",
        "mobile_number" : "",
        "customer_dob" : "",
        "current_address" : "",
        "permanent_address" : "",
        "guardian_name" : "",
        "pan" : "",
        "aadhar" : "",
        "voter_id" : "",
        "passport" : "",
        "driving_license" : "",
        "form_60" : "",
        "tin" : "",
        "bank_account_number" : "",
        "ifsc_code" : "",
        "father_name" : ""
    }
}


Response:

Success: 200 OK

Attribute


TypeDescription


Mandatory
response
StringInternal status code that denotes the status of request
Yes
dataObject DataObjectSuccess Response Object
Yes

Attribute
Data Typeyes
pan
StringNo
aadhar
StringNo
passport
StringNo
dedupe_type
StringYes
dedupe_subtype
StringNo
dedupe_key
StringYes
dedupe_percent
DoubleYes
property_address
StringNo
property_distance
StringNo
chasis_no
StringNo
engine_number
StringNo
customer_name
StringNo
mobile_number
StringNo
global_customer_id
StringNo
source_application_no
StringNo
loan_application_no
StringNo
customer_guardian_name
StringNo
customer_dob
StringNo
voter_id
StringNo
driving_license
StringNo
collateral_id
StringNo
global_collateral_id
StringNo
registration_number
StringNo
owner_name
StringNo
customer_id
StringNo
customer_type
StringNo
current_address
StringNo
permanent_address
StringNo
loan_id
NumberYes
ifsc_code
StringNo
customer_father_name
StringNo
bank_account_number
StringNo
property_pincode
StringNo
khasra_number
StringNo
property_long
IntegerNo
property_lat
IntegerNo
error
StringInternal error object for the given inputs
Yes


{
    "response": true,
    "data": [
        {
            "pan": "string",
            "aadhar": "string",
            "passport": "string",
            "dedupe_type": "",
            "dedupe_subtype": null,
            "dedupe_key": "",
            "dedupe_percent": 0.0,
            "property_address": "string",
            "property_distance": "string",
            "chasis_no": "string",
            "engine_number": "string",
            "customer_name": "string",
            "mobile_number": "string",
            "global_customer_id": "string",
            "source_application_number": "string",
            "loan_application_number": "string",
            "customer_guardian_name": "string",
            "customer_dob": "string",
            "voter_id": "string",
            "driving_license": "string",
            "collateral_id": "string",
            "global_collateral_id": "string",
            "registration_number": "string",
            "owner_name": "string",
            "customer_id": "string",
            "customer_type": "string",
            "current_address": "string",
            "permanent_address": "string",
            "loan_id": 0,
            "ifsc_code": "string",
            "customer_father_name": "string",
            "bank_account_number": "string",
            "property_pincode": "string",
            "khasra_number": "string",
            "property_long": 0,
            "property_lat": 0
        },
    ],
    "error": null
}