This API 1 provides services to upload, manipulate and download businesspartner data in the CDL Cloud.
Data Exchange API (5)
Download OpenAPI description
Languages
Servers
Production
https://api.cdq.com/data-exchange/rest/
Bodyapplication/jsonrequired
TechnicalReportsRequest
Detailed description of a Job.
Example: "I started this job to improve quality of our data."
- Production
https://api.cdq.com/data-exchange/rest/technicalreports
curl -i -X POST \
https://api.cdq.com/data-exchange/rest/technicalreports \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-d '{
"name": "Process vendor data.",
"description": "I started this job to improve quality of our data.",
"reportsConfiguration": {
"technicalProfiler": {
"build": "false",
"sourceFileUrl": "customer-upload/user/file.xlsx",
"storageId": "72d6900fce6b326088f5d9d91049e3e6",
"featuresOn": [
"STORE_TECHNICAL_PROFILE"
]
}
}
}'
Response
application/json
{ "id": "35f23c03-1c22-45fe-9484-3ffe769325de", "name": "Process vendor data.", "description": "I started this job to improve quality of our data.", "status": "RUNNING", "statusMessage": "The job failed because storage is empty.", "createdAt": "2025-08-19T06:23:16Z", "user": "742429-234242-4343-232323", "progress": "77", "attachments": [ { … } ], "reportsConfiguration": { "technicalProfiler": { … } } }
- Production
https://api.cdq.com/data-exchange/rest/technicalreports/{id}
curl -i -X GET \
https://api.cdq.com/data-exchange/rest/technicalreports/35f23c03-1c22-45fe-9484-3ffe769325de \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
Response
application/json
{ "id": "35f23c03-1c22-45fe-9484-3ffe769325de", "name": "Process vendor data.", "description": "I started this job to improve quality of our data.", "status": "RUNNING", "statusMessage": "The job failed because storage is empty.", "createdAt": "2025-08-19T06:23:16Z", "user": "742429-234242-4343-232323", "progress": "77", "attachments": [ { … } ], "reportsConfiguration": { "technicalProfiler": { … } } }