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/
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. |
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. |
- Mock server
https://developer.cdq.com/_mock/apis/identity-management-api/api-v2/organizations/{id}/globalsettings/datapoolaccesssettings/{dataSourceTechnicalKey}
- Production
https://api.cdq.com/identity-management/rest/organizations/{id}/globalsettings/datapoolaccesssettings/{dataSourceTechnicalKey}
- cURL
- Java
- JavaScript
- Python
- Node.js
curl -i -X PUT \
https://developer.cdq.com/_mock/apis/identity-management-api/api-v2/organizations/cdq_monitor/globalsettings/datapoolaccesssettings/BR_RF \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-d '{
"activationStatus": "ACTIVE",
"termsAcceptanceStatus": "ACCEPTED",
"credentials": [
{
"type": {
"technicalKey": "AT.FON.TID",
"label": "API Key"
},
"fields": [
{
"type": {
"technicalKey": "USERNAME",
"label": "API Key",
"type": "API Key"
},
"value": "********"
}
]
}
]
}'
{ "dataSourceSettings": [ { … } ] }