This API provides services for executing Business Partner Duplicate Matching process.
Data Matching API (3)
Download OpenAPI description
Languages
Servers
Production
https://api.cdq.com/data-matching/rest/
Bodyapplication/jsonrequired
cmd
Unique identifier of a job.
Example: "35f23c03-1c22-45fe-9484-3ffe769325de"
- Production
https://api.cdq.com/data-matching/rest/matchingreports
curl -i -X POST \
https://api.cdq.com/data-matching/rest/matchingreports \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-d '{
"matchingJobId": "35f23c03-1c22-45fe-9484-3ffe769325de",
"reportsConfiguration": {
"duplicateMatching": {
"build": "false",
"includeSingles": "false"
},
"duplicateConsolidation": {
"build": "false",
"includeSingles": "false"
},
"linkage": {
"build": "false",
"includeSingles": "false"
}
}
}'
Response
application/json
{ "id": "35f23c03-1c22-45fe-9484-3ffe769325de", "status": "RUNNING", "statusMessage": "The job failed because storage is empty.", "createdAt": "2025-08-15T11:08:26Z", "finishedAt": "2025-08-15T11:08:26Z", "user": "johndoe", "attachments": [ { … } ], "progress": "77", "reportsConfiguration": { "duplicateMatching": { … }, "duplicateConsolidation": { … }, "linkage": { … } } }
- Production
https://api.cdq.com/data-matching/rest/matchingreports/{id}
curl -i -X GET \
https://api.cdq.com/data-matching/rest/matchingreports/65dcc3c60cecd503bcc88c92 \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
Response
application/json
{ "id": "35f23c03-1c22-45fe-9484-3ffe769325de", "status": "RUNNING", "statusMessage": "The job failed because storage is empty.", "createdAt": "2025-08-15T11:08:26Z", "finishedAt": "2025-08-15T11:08:26Z", "user": "johndoe", "attachments": [ { … } ], "progress": "77", "reportsConfiguration": { "duplicateMatching": { … }, "duplicateConsolidation": { … }, "linkage": { … } } }