Services to manage access and global configuration for CDQ Cloud Platform.
Identity Management API (2)
https://developer.cdq.com/_mock/apis/identity-management-api/api-v2/
https://api.cdq.com/identity-management/rest/
- Mock server
https://developer.cdq.com/_mock/apis/identity-management-api/api-v2/v2/organizations/{id}/globalsettings/datapoolaccesssettings
- Production
https://api.cdq.com/identity-management/rest/v2/organizations/{id}/globalsettings/datapoolaccesssettings
- cURL
- Java
- JavaScript
- Python
- Node.js
curl -i -X GET \
https://developer.cdq.com/_mock/apis/identity-management-api/api-v2/v2/organizations/cdq_monitor/globalsettings/datapoolaccesssettings \
-H 'Authorization: Bearer eyJhbGciOiJIUzI1(...)' \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
{ "page": "1", "pageSize": "100", "total": "67", "values": [ { … } ] }
- Mock server
https://developer.cdq.com/_mock/apis/identity-management-api/api-v2/v2/organizations/{id}/globalsettings/datapoolaccesssettings/{dataSourceTechnicalKey}
- Production
https://api.cdq.com/identity-management/rest/v2/organizations/{id}/globalsettings/datapoolaccesssettings/{dataSourceTechnicalKey}
- cURL
- Java
- JavaScript
- Python
- Node.js
curl -i -X GET \
https://developer.cdq.com/_mock/apis/identity-management-api/api-v2/v2/organizations/cdq_monitor/globalsettings/datapoolaccesssettings/BR_RF \
-H 'Authorization: Bearer eyJhbGciOiJIUzI1(...)' \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
successful operation
Whether an organization has activated a data source.
Enum Value | Description |
---|---|
ACTIVE | The data source is activated for the organization. |
INACTIVE | The data source is not activated for the organization. |
The date when a data source was activated by a user of an organization.
The user ID of the user who activated a data source.
The date when a data source was deactivated by a user of an organization.
The user ID of the user who deactivated a data source.
Whether an organization has accepted the terms of use of a data source.
Enum Value | Description |
---|---|
ACCEPTED | The terms of use of the data source are accepted by the organization. |
NOT_ACCEPTED | The terms of use of the data source are not accepted by the organization. |
The date when a user of an organization accepted the terms of use of a data source.
The user ID of the user who accepted the terms of use of a data source.
The date when a user of an organization revoked acceptation the terms of use of a data source.
The user ID of the user who revoked acceptation the terms of use of a data source.
URL that provides information on the licence of the target, see https://meta.cdq.com/Property:Has_licence_URL
The type of terms of use of a data source. See https://meta.cdq.com/Property:Has_terms_type
Describes which credentials should be set for the data source
{ "dataSource": { "url": "https://meta.cdq.com/Data_source/BR.RF", "name": "Receita Federal Brazil", "technicalKey": "BR_RF" }, "activationStatus": "ACTIVE", "activatedAt": "2025-08-29T09:46:58Z", "activatedBy": "tom.sawyer@twain.com", "deactivatedAt": "2025-08-29T09:46:58Z", "deactivatedBy": "tom.sawyer@twain.com", "termsAcceptanceStatus": "ACCEPTED", "termsAcceptedAt": "2025-08-29T09:46:58Z", "termsAcceptedBy": "huckleberry.finn@twain.com", "termsUnacceptedAt": "2025-08-29T09:46:58Z", "termsUnacceptedBy": "huckleberry.finn@twain.com", "licenceUrl": "https://www.cdq.ch/legal/dsc-terms-of-use", "termsType": "https://meta.cdq.com/Data_source/AT.FON", "allowedCredentialTypes": [ "BVD_CREDENTIALS" ], "credentials": [ { … } ] }