FYNDNA retail banking suite
  1. Dedupe configuration
FYNDNA retail banking suite
  • Party deduplication
    • Dedupe configuration
      • Create dedupe configuration
        POST
      • Retrieve all dedupe configurations
        GET
      • Update a dedupe configuration
        PUT
      • Delete a dedupe configuration
        DELETE
      • Modify a dedupe configuration
        POST
      • Update a specific criterion in a dedupe configuration
        PATCH
      • Retrieve a specific dedupe configuration
        GET
      • Delete a specific dedupe configuration
        DELETE
      • Retrieve the dedupe configuration for a party type
        GET
    • Dedupe execution
      • Initiate synchronous dedupe
      • Initiate asynchronous dedupe
    • Dedupe results
      • Retrieve dedupe results
  1. Dedupe configuration

Update a specific criterion in a dedupe configuration

PATCH
/party-dedupe-criteria-configuration/{criteriaId}
Deduplication is based on specific criteria defined in the dedupe policy. Each policy is a dedupe configuration. You can update a specific dedupe criterion using this endpoint. For example, you can add incremental attributes like "full name check" to an existing match criterion like Aadhar. This means that the dedupe process should validate the Aadhar number and the full name of the party.

Request

Path Params

Query Params

Body Params application/json

Examples

Responses

🟢200OK
*/*
OK
Body

🟠400Bad Request
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH 'https://dev.your-api-server.com/party-dedupe-criteria-configuration/37ed6422-68ac-44bd-9ab9-75c9ced5a202?criteriaId=37ed6422-68ac-44bd-9ab9-75c9ced5a202&status=&version=0&createdOn=2024-08-24T14:15:22.123Z&createdBy=babubhai&updatedOn=2024-10-18T14:15:22.123Z&updatedBy=sanubhai&dirty=&deleted=&jsonContent=' \
--header 'Content-Type: application/json' \
--data-raw '{}'
Response Response Example
200 - Example 1
{
    "criteriaId": "37ed6422-68ac-44bd-9ab9-75c9ced5a202",
    "status": "ACTIVE",
    "version": "0",
    "createdOn": "2024-08-24T14:15:22.123Z",
    "createdBy": "system",
    "updatedOn": "2024-10-18T14:15:22.123Z",
    "updatedBy": "system",
    "jsonContent": {
        "extensionFields": {},
        "partyType": "INDIVIDUAL",
        "partySearchPolicyType": "CONFIRMED",
        "criteriaName": "PAN",
        "attributes": [
            "panNumberIndividual"
        ]
    }
}
Modified at 2025-02-17 09:40:39
Previous
Modify a dedupe configuration
Next
Retrieve a specific dedupe configuration
Built with