Services to manage access and global configuration for CDQ Cloud Platform.
Identity Management API (2)
Download OpenAPI description
Languages
Servers
Production
https://api.cdq.com/identity-management/rest/
Bodyapplication/json
Whether an organization has activated a data source.
 Default "INACTIVE"
| Enum Value | Description | 
|---|---|
| ACTIVE | The data source is activated for the organization.  | 
| INACTIVE | The data source is not activated for the organization.  | 
 Example: "ACTIVE"
Whether an organization has accepted the terms of use of a data source.
 Default "NOT_ACCEPTED"
| 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.  | 
 Example: "ACCEPTED"
- Production
https://api.cdq.com/identity-management/rest/organizations/{id}/globalsettings/datapoolaccesssettings/{dataSourceTechnicalKey}
 
- cURL
 - Java
 - JavaScript
 - Python
 - Node.js
 
curl -i -X PUT \
  https://api.cdq.com/identity-management/rest/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": "********"
          }
        ]
      }
    ]
  }'Response
application/json
{ "dataSourceSettings": [ { … } ] }