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:
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