Service allows to generate and obtain various reporting artifacts such as excel reports and charts in a unified, flexible and secure way
CDQ Analytics API (1.0.0)
https://idp.cdq.com/_mock/apis/cdq-analytics-api/api-v1/
https://analytics-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/api/rest/soap/v1/
https://analytics-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/api/rest/
Type of the artifact (currently only report artifacts are supported).
Type of the artifact (currently only report artifacts are supported).
Type of the artifact (currently only report artifacts are supported).
Flag controlling whether the response should include only Data Clinic standard reports.
Flag controlling whether the response should include only Data Clinic standard reports.
Flag controlling whether the response should include only Data Clinic standard reports.
- Mock server
https://idp.cdq.com/_mock/apis/cdq-analytics-api/api-v1/artifacts
- Production SOAP
https://analytics-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/api/rest/soap/v1/artifacts
- Production
https://analytics-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/api/rest/artifacts
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://idp.cdq.com/_mock/apis/cdq-analytics-api/api-v1/artifacts?type=string&dataClinicEnabledOnly=true&page=0&pageSize=100' \
-H 'x-api-key: YOUR_API_KEY_HERE'Successful Response
The number or items to include in a single page. If the resulting number of items will be lower than the input, page size will show the number of returned items.
The domain the artifact is assigned to.
The domain the artifact is assigned to.
The domain the artifact is assigned to.
Detailed description of the artifact.
Detailed description of the artifact.
Detailed description of the artifact.
{ "page": 0, "pageSize": 17, "total": 150, "values": [ { … } ] }
- Mock server
https://idp.cdq.com/_mock/apis/cdq-analytics-api/api-v1/artifacts/{id}/info
- Production SOAP
https://analytics-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/api/rest/soap/v1/artifacts/{id}/info
- Production
https://analytics-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/api/rest/artifacts/{id}/info
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://idp.cdq.com/_mock/apis/cdq-analytics-api/api-v1/artifacts/{id}/info' \
-H 'x-api-key: YOUR_API_KEY_HERE'Successful Response
The domain the artifact is assigned to.
The domain the artifact is assigned to.
The domain the artifact is assigned to.
Detailed description of the artifact.
Detailed description of the artifact.
Detailed description of the artifact.
{ "id": "data_defects_report", "label": "string", "typeOf": "Report", "domain": "validation", "description": "string", "schema": { "name": "string", "fields": [ … ], "filters": [ … ], "groups": [ … ] }, "features": [ "SHOW_MATCHING_EXPLANATION" ] }
- Mock server
https://idp.cdq.com/_mock/apis/cdq-analytics-api/api-v1/artifacts/fileFormats
- Production SOAP
https://analytics-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/api/rest/soap/v1/artifacts/fileFormats
- Production
https://analytics-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/api/rest/artifacts/fileFormats
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://idp.cdq.com/_mock/apis/cdq-analytics-api/api-v1/artifacts/fileFormats \
-H 'x-api-key: YOUR_API_KEY_HERE'{ "page": 1, "pageSize": 2, "total": 2, "values": [ { … }, { … } ] }