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

Initiate asynchronous dedupe

POST
/party-dedupe/async
An asynchronous dedupe call refers to a process where the deduplication check is performed in the background, independently of the primary operation. This means the system continues the primary operation without waiting for the deduplication results. Once the deduplication process is complete, the result is shown in the response with a unique ID. You can fetch this result using the Retrieve dedupe results endpoint.

Request

Body Params application/json

Examples

Responses

🟢200OK
*/*
OK
Body

🟠400Bad Request
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://dev.your-api-server.com/party-dedupe/async' \
--header 'Content-Type: application/json' \
--data-raw '{
    "id": "189701551",
    "owningEntityType": "PARTY_ID",
    "owningEntityId": "189001551",
    "partyEventCode": "RE_KYC_UPDATE",
    "partyType": "INDIVIDUAL",
    "dedupeAttribute": {
        "partyType": "INDIVIDUAL",
        "externalReferences": [
            {
                "id": "811_00_9786_78y647q36",
                "dirty": null,
                "deleted": true,
                "externalSystem": "MiRevenue",
                "externalId": "9511115e-af51-43fb-9027-700cfabdffe2",
                "internalReferenceId": "811_00_9786_78y647q36"
            }
        ],
        "phoneNumberDetails": [
            "9916134589"
        ],
        "emailDetails": [
            "balu.singh@abc.com"
        ],
        "fullName": "Yuvraj Singh",
        "dateOfBirth": "01-11-1987",
        "identifications": [
            {
                "id": "096a4789-c624-4a2d-8afa-7a53ac433c13",
                "dirty": true,
                "deleted": true,
                "type": "AADHAAR",
                "value": "690134516213"
            }
        ]
    },
    "onlyConfirmedMatches": true,
    "url": "{{API gateway IP address}}/party-onboarding/party-onboarding/{{dedupe result ID}}/update-dedupe-status"
}'
Response Response Example
200 - Example 1
Modified at 2025-02-17 09:42:07
Previous
Initiate synchronous dedupe
Next
Dedupe results
Built with