This API provides services used for business partner qualification
https://idp.cdq.com/_mock/apis/data-validation-api/api-v3/
https://api.corporate-data-league.ch/data-validation/soap/v3/
https://api.corporate-data-league.ch/data-validation/
Request features that should be turned on.
| Items Enum Value | Description |
|---|---|
| V3_DATA_VALIDATION_PROFILE_1 | Triggers specific behaviours for FEATURE_1. |
| V3_DATA_VALIDATION_PROFILE_2 | Triggers specific behaviours for FEATURE_2. |
Request features that should be turned off.
| Items Enum Value | Description |
|---|---|
| V3_DATA_VALIDATION_PROFILE_1 | Triggers specific behaviours for FEATURE_1. |
| V3_DATA_VALIDATION_PROFILE_2 | Triggers specific behaviours for FEATURE_2. |
Profile used in the data validation process.
| Enum Value | Description |
|---|---|
| V3_DATA_VALIDATION_PROFILE_1 | Triggers specific behaviours for PROFILE_1. |
| V3_DATA_VALIDATION_PROFILE_2 | Triggers specific behaviours for PROFILE_2. |
JSON object that represents custom record. If record and jsonRecord are present, exception will be thrown.
List of knowledge graphs with optional mappings.
- Mock server
https://idp.cdq.com/_mock/apis/data-validation-api/api-v3/v3/validate
- Production SOAP
https://api.corporate-data-league.ch/data-validation/soap/v3/v3/validate
- Production
https://api.corporate-data-league.ch/data-validation/v3/validate
curl -i -X POST \
-u <username>:<password> \
https://idp.cdq.com/_mock/apis/data-validation-api/api-v3/v3/validate \
-H 'Content-Type: application/json' \
-H 'X-Credential-Username: 87b1bdb1-ba87-4522-b363-c5a0e6e917b3' \
-d '{
"featuresOn": [
"V3_DATA_VALIDATION_FEATURE_1"
],
"featuresOff": [
"V3_DATA_VALIDATION_FEATURE_2"
],
"profile": "V3_DATA_VALIDATION_PROFILE_1",
"businessPartner": {
"identifiers": [
{
"value": "ESA28240752",
"type": {
"technicalKey": "EU_VAT_ID_ES"
}
}
],
"names": [
{
"value": "ATOS SPAIN SA"
}
],
"addresses": [
{
"country": {
"shortName": "ES"
},
"localities": [
{
"value": "Madrid"
}
],
"postCodes": [
{
"value": "28037"
}
],
"thoroughfares": [
{
"value": "Calle Albarracin"
}
]
}
]
}
}'{ "version": 3, "dataDefects": [ { … } ] }