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

Delete a dedupe configuration

DELETE
/party-dedupe-criteria-configuration
Deduplication is based on specific criteria defined in the dedupe policy. Each policy is a dedupe configuration. You can delete a dedupe configuration using this endpoint.

Request

Body Params application/json

Examples

Responses

🟢200OK
application/json
OK
Body

🟠400Bad Request
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request DELETE 'https://dev.your-api-server.com/party-dedupe-criteria-configuration' \
--header 'Content-Type: application/json' \
--data-raw '{
    "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",
    "dirty": true,
    "deleted": true,
    "jsonContent": {
        "extensionFields": {},
        "partyType": "INDIVIDUAL",
        "partySearchPolicyType": "CONFIRMED",
        "criteriaName": "PAN",
        "attributes": [
            "panNumberIndividual"
        ]
    }
}'
Response Response Example
200 - Example 1
{}
Modified at 2025-02-17 09:40:52
Previous
Update a dedupe configuration
Next
Modify a dedupe configuration
Built with