Services to manage access and global configuration for CDQ Cloud Platform.
Identity Management API (2)
https://idp.cdq.com/_mock/apis/identity-management-api/api-v2/
https://user-management-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/soap/v2/
https://user-management-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/
Organization Resource Quotas
Manage organization resource quotas. It includes operations such as listing all organization resource quotas, creating a new organization resource quota, reading specific organization resource quota details, updating an organization resource quota, and deleting an organization resource quota.
- Mock server
https://idp.cdq.com/_mock/apis/identity-management-api/api-v2/workspaces/{id}
- Production SOAP
https://user-management-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/soap/v2/workspaces/{id}
- Production
https://user-management-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/workspaces/{id}
curl -i -X GET \
https://idp.cdq.com/_mock/apis/identity-management-api/api-v2/workspaces/c074b9f3-abf0-4f8e-9a20-74deb6cfa2a4 \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'X-Credential-Username: 87b1bdb1-ba87-4522-b363-c5a0e6e917b3'{ "id": "c074b9f3-abf0-4f8e-9a20-74deb6cfa2a4", "name": "This is a workspace.", "organization": { "id": "cdq_monitor" }, "createdAt": "2020-08-31T16:47+00:00", "createdBy": "76248934691294444", "deleted": "true", "deletedAt": "2020-08-31T16:47+00:00", "deletedBy": "76248934691294444", "apiKeys": [ { … } ], "configurations": { "workspaceConfigurations": [ … ] }, "settings": { "dataMirrorSettings": { … }, "summaryMailSettings": { … } }, "type": "PRODUCTION", "defaultWorkspace": "false" }
- Mock server
https://idp.cdq.com/_mock/apis/identity-management-api/api-v2/workspaces/{id}
- Production SOAP
https://user-management-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/soap/v2/workspaces/{id}
- Production
https://user-management-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/workspaces/{id}
curl -i -X PUT \
https://idp.cdq.com/_mock/apis/identity-management-api/api-v2/workspaces/c074b9f3-abf0-4f8e-9a20-74deb6cfa2a4 \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-H 'X-Credential-Username: 87b1bdb1-ba87-4522-b363-c5a0e6e917b3' \
-d '{
"name": "This is a workspace.",
"settings": {
"dataMirrorSettings": {
"storageId": "72d6900fce6b326088f5d9d91049e3e6",
"storage": {
"id": "72d6900fce6b326088f5d9d91049e3e6"
},
"featuresOn": [
"CATENA_X_REPLICA"
]
},
"summaryMailSettings": {
"enabled": "true",
"frequency": "BI-WEEKLY"
}
},
"type": "PRODUCTION"
}'{ "id": "c074b9f3-abf0-4f8e-9a20-74deb6cfa2a4", "name": "This is a workspace.", "organization": { "id": "cdq_monitor" }, "createdAt": "2020-08-31T16:47+00:00", "createdBy": "76248934691294444", "deleted": "true", "deletedAt": "2020-08-31T16:47+00:00", "deletedBy": "76248934691294444", "apiKeys": [ { … } ], "configurations": { "workspaceConfigurations": [ … ] }, "settings": { "dataMirrorSettings": { … }, "summaryMailSettings": { … } }, "type": "PRODUCTION", "defaultWorkspace": "false" }
- Mock server
https://idp.cdq.com/_mock/apis/identity-management-api/api-v2/workspaces/{id}
- Production SOAP
https://user-management-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/soap/v2/workspaces/{id}
- Production
https://user-management-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/workspaces/{id}
curl -i -X DELETE \
https://idp.cdq.com/_mock/apis/identity-management-api/api-v2/workspaces/c074b9f3-abf0-4f8e-9a20-74deb6cfa2a4 \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'X-Credential-Username: 87b1bdb1-ba87-4522-b363-c5a0e6e917b3'- Mock server
https://idp.cdq.com/_mock/apis/identity-management-api/api-v2/workspaces
- Production SOAP
https://user-management-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/soap/v2/workspaces
- Production
https://user-management-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/workspaces
curl -i -X GET \
https://idp.cdq.com/_mock/apis/identity-management-api/api-v2/workspaces \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'X-Credential-Username: 87b1bdb1-ba87-4522-b363-c5a0e6e917b3'{ "page": "1", "pageSize": "100", "total": "67", "values": [ { … } ] }
- application/json
- application/xml
Uniquely identifying ID of the organization.
Unique identifier of the Storage.
- Mock server
https://idp.cdq.com/_mock/apis/identity-management-api/api-v2/workspaces
- Production SOAP
https://user-management-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/soap/v2/workspaces
- Production
https://user-management-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/workspaces
curl -i -X POST \
https://idp.cdq.com/_mock/apis/identity-management-api/api-v2/workspaces \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-H 'X-Credential-Username: 87b1bdb1-ba87-4522-b363-c5a0e6e917b3' \
-d '{
"organizationId": "cdq_monitor",
"name": "This is a workspace.",
"dataMirrorId": "72d6900fce6b326088f5d9d91049e3e6",
"dataMirrorName": "Company Data Mirror",
"type": "PRODUCTION"
}'{ "id": "c074b9f3-abf0-4f8e-9a20-74deb6cfa2a4", "name": "This is a workspace.", "organization": { "id": "cdq_monitor" }, "createdAt": "2020-08-31T16:47+00:00", "createdBy": "76248934691294444", "deleted": "true", "deletedAt": "2020-08-31T16:47+00:00", "deletedBy": "76248934691294444", "apiKeys": [ { … } ], "configurations": { "workspaceConfigurations": [ … ] }, "settings": { "dataMirrorSettings": { … }, "summaryMailSettings": { … } }, "type": "PRODUCTION", "defaultWorkspace": "false" }
- Mock server
https://idp.cdq.com/_mock/apis/identity-management-api/api-v2/workspaces/{workspaceId}/members
- Production SOAP
https://user-management-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/soap/v2/workspaces/{workspaceId}/members
- Production
https://user-management-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/workspaces/{workspaceId}/members
curl -i -X POST \
https://idp.cdq.com/_mock/apis/identity-management-api/api-v2/workspaces/c074b9f3-abf0-4f8e-9a20-74deb6cfa2a4/members \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"userId": "johndoe",
"role": "VIEWER"
}'{ "userId": "johndoe", "role": "VIEWER" }
- Mock server
https://idp.cdq.com/_mock/apis/identity-management-api/api-v2/workspaces/{workspaceId}/members
- Production SOAP
https://user-management-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/soap/v2/workspaces/{workspaceId}/members
- Production
https://user-management-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/workspaces/{workspaceId}/members
curl -i -X GET \
https://idp.cdq.com/_mock/apis/identity-management-api/api-v2/workspaces/c074b9f3-abf0-4f8e-9a20-74deb6cfa2a4/members \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'[ { "userId": "johndoe", "role": "VIEWER", "firstName": "John", "lastName": "Doe", "email": "info@cdq.ch" } ]
- Mock server
https://idp.cdq.com/_mock/apis/identity-management-api/api-v2/workspaces/{workspaceId}/members/{userId}
- Production SOAP
https://user-management-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/soap/v2/workspaces/{workspaceId}/members/{userId}
- Production
https://user-management-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/workspaces/{workspaceId}/members/{userId}
curl -i -X PUT \
https://idp.cdq.com/_mock/apis/identity-management-api/api-v2/workspaces/c074b9f3-abf0-4f8e-9a20-74deb6cfa2a4/members/johndoe \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"role": "VIEWER"
}'{ "userId": "johndoe", "role": "VIEWER" }
- Mock server
https://idp.cdq.com/_mock/apis/identity-management-api/api-v2/workspaces/{workspaceId}/members/{userId}
- Production SOAP
https://user-management-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/soap/v2/workspaces/{workspaceId}/members/{userId}
- Production
https://user-management-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/workspaces/{workspaceId}/members/{userId}
curl -i -X DELETE \
https://idp.cdq.com/_mock/apis/identity-management-api/api-v2/workspaces/c074b9f3-abf0-4f8e-9a20-74deb6cfa2a4/members/johndoe \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'- Mock server
https://idp.cdq.com/_mock/apis/identity-management-api/api-v2/workspaces/switch
- Production SOAP
https://user-management-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/soap/v2/workspaces/switch
- Production
https://user-management-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/workspaces/switch
curl -i -X POST \
https://idp.cdq.com/_mock/apis/identity-management-api/api-v2/workspaces/switch \
-H 'Authorization: Bearer eyJhbGciOiJIUzI1(...)' \
-H 'Content-Type: application/json' \
-d '{
"requestedWorkspaceId": "a79bbc46-070c-4016-b400-f30461ab036b"
}'Workspace Resource Quotas
Manage workspace resource quotas. It includes operations such as listing all workspace resource quotas, creating a new workspace resource quota, reading specific workspace resource quota details, updating a workspace resource quota, and deleting a workspace resource quota.