This API provides services to search and read compliance information
Data Compliance API (2)
https://api.cdq.com/data-compliance/rest/
Pagination cursor which should be filled with nextStartAfter value provided in the previous page read response.
Number of resources to be returned on the page.
- Production
https://api.cdq.com/data-compliance/rest/configurations/compliancelistsscreening
- cURL
- Java
- JavaScript
- Python
- Node.js
curl -i -X GET \
https://api.cdq.com/data-compliance/rest/configurations/compliancelistsscreening \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
{ "startAfter": "5712566172571652", "nextStartAfter": "5712566172571652", "total": "67", "values": [ { … } ] }
Uniquely identifying ID of the workspace.
- Production
https://api.cdq.com/data-compliance/rest/configurations/compliancelistsscreening
- cURL
- Java
- JavaScript
- Python
- Node.js
curl -i -X POST \
https://api.cdq.com/data-compliance/rest/configurations/compliancelistsscreening \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-d '{
"workspaceId": "c074b9f3-abf0-4f8e-9a20-74deb6cfa2a4",
"name": "Client configuration.",
"configuration": {
"matchingThreshold": "0.8",
"lists": [
{
"technicalKey": "INFO4C_SL_1"
}
]
}
}'
{ "id": "c074b9f3-abf0-4f8e-9a20-74deb6cfa2a4", "name": "Client configuration.", "version": 1, "configuration": { "matchingThreshold": "0.8", "lists": [ … ] }, "createdAt": "2025-10-14T07:32:29Z", "modifiedAt": "2025-10-14T07:32:29Z", "createdBy": "76248934691294444" }
- Production
https://api.cdq.com/data-compliance/rest/configurations/compliancelistsscreening/{configurationId}
- cURL
- Java
- JavaScript
- Python
- Node.js
curl -i -X GET \
https://api.cdq.com/data-compliance/rest/configurations/compliancelistsscreening/c074b9f3-abf0-4f8e-9a20-74deb6cfa2a4 \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
{ "id": "c074b9f3-abf0-4f8e-9a20-74deb6cfa2a4", "name": "Client configuration.", "version": 1, "configuration": { "matchingThreshold": "0.8", "lists": [ … ] }, "createdAt": "2025-10-14T07:32:29Z", "modifiedAt": "2025-10-14T07:32:29Z", "createdBy": "76248934691294444" }
- Production
https://api.cdq.com/data-compliance/rest/configurations/compliancelistsscreening/{configurationId}
- cURL
- Java
- JavaScript
- Python
- Node.js
curl -i -X PUT \
https://api.cdq.com/data-compliance/rest/configurations/compliancelistsscreening/c074b9f3-abf0-4f8e-9a20-74deb6cfa2a4 \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-d '{
"name": "Client configuration.",
"configuration": {
"matchingThreshold": "0.8",
"lists": [
{
"technicalKey": "INFO4C_SL_1"
}
]
}
}'
{ "id": "c074b9f3-abf0-4f8e-9a20-74deb6cfa2a4", "name": "Client configuration.", "version": 1, "configuration": { "matchingThreshold": "0.8", "lists": [ … ] }, "createdAt": "2025-10-14T07:32:29Z", "modifiedAt": "2025-10-14T07:32:29Z", "createdBy": "76248934691294444" }
- Production
https://api.cdq.com/data-compliance/rest/configurations/compliancelistsscreening/{configurationId}
- cURL
- Java
- JavaScript
- Python
- Node.js
curl -i -X DELETE \
https://api.cdq.com/data-compliance/rest/configurations/compliancelistsscreening/c074b9f3-abf0-4f8e-9a20-74deb6cfa2a4 \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
{ "id": "c074b9f3-abf0-4f8e-9a20-74deb6cfa2a4", "name": "Client configuration.", "version": 1, "configuration": { "matchingThreshold": "0.8", "lists": [ … ] }, "createdAt": "2025-10-14T07:32:29Z", "modifiedAt": "2025-10-14T07:32:29Z", "createdBy": "76248934691294444" }
- Production
https://api.cdq.com/data-compliance/rest/configurations/compliancelistsscreening/{configurationId}/versions/{version}
- cURL
- Java
- JavaScript
- Python
- Node.js
curl -i -X GET \
https://api.cdq.com/data-compliance/rest/configurations/compliancelistsscreening/c074b9f3-abf0-4f8e-9a20-74deb6cfa2a4/versions/1 \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
Successful operation.
Unique identifier of the compliance lists screening configuration version. Not to be confused with the configuration ID.
Uniquely identifies a configuration.
Defines settings for compliance list screening.
Date and time when the first version of the configuration was created (ISO 8601-compliant).
Date and time when this version of the configuration was created (ISO 8601-compliant).
User who created the first version of the configuration.
{ "id": "c074b9f3-abf0-4f8e-9a20-74deb6cfa2a4", "name": "Configuration Name", "configurationId": "c074b9f3-abf0-4f8e-9a20-74deb6cfa2a4", "version": 1, "configuration": { "matchingThreshold": "0.8", "lists": [ … ] }, "createdAt": "2025-10-14T07:32:29Z", "modifiedAt": "2025-10-14T07:32:29Z", "createdBy": "69129435489347624", "modifiedBy": "76248934691294444" }