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.
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.
- Mock server
https://idp.cdq.com/_mock/apis/identity-management-api/api-v2/quotas/resources/workspaces
- Production SOAP
https://user-management-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/soap/v2/quotas/resources/workspaces
- Production
https://user-management-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/quotas/resources/workspaces
curl -i -X GET \
https://idp.cdq.com/_mock/apis/identity-management-api/api-v2/quotas/resources/workspaces \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'{ "startAfter": "5712566172571652", "nextStartAfter": "5712566172571652", "total": "67", "values": [ { … } ] }
Uniquely identifying ID of the workspace.
Workspace resource quota resource item.
Workspace quota resource technical key enum. This can be any technical key of a configuration type or an API_KEYS. The value is not checked. If the technical key is wrongly set then quota will not be enforced.
- Mock server
https://idp.cdq.com/_mock/apis/identity-management-api/api-v2/quotas/resources/workspaces
- Production SOAP
https://user-management-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/soap/v2/quotas/resources/workspaces
- Production
https://user-management-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/quotas/resources/workspaces
curl -i -X POST \
https://idp.cdq.com/_mock/apis/identity-management-api/api-v2/quotas/resources/workspaces \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"workspaceId": "c074b9f3-abf0-4f8e-9a20-74deb6cfa2a4",
"quota": "1",
"resource": {
"technicalKey": "API_KEYS"
}
}'{ "id": "6633348b2b5f2b772013eb91", "workspaceId": "c074b9f3-abf0-4f8e-9a20-74deb6cfa2a4", "quota": "1", "usage": "1", "resource": { "technicalKey": "API_KEYS" }, "createdAt": "2020-08-31T16:47+00:00", "createdBy": "76248934691294444", "modifiedAt": "2020-08-31T16:47+00:00", "modifiedBy": "76248934691294444" }
- Mock server
https://idp.cdq.com/_mock/apis/identity-management-api/api-v2/quotas/resources/workspaces/{id}
- Production SOAP
https://user-management-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/soap/v2/quotas/resources/workspaces/{id}
- Production
https://user-management-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/quotas/resources/workspaces/{id}
curl -i -X GET \
https://idp.cdq.com/_mock/apis/identity-management-api/api-v2/quotas/resources/workspaces/6633348b2b5f2b772013eb91 \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'{ "id": "6633348b2b5f2b772013eb91", "workspaceId": "c074b9f3-abf0-4f8e-9a20-74deb6cfa2a4", "quota": "1", "usage": "1", "resource": { "technicalKey": "API_KEYS" }, "createdAt": "2020-08-31T16:47+00:00", "createdBy": "76248934691294444", "modifiedAt": "2020-08-31T16:47+00:00", "modifiedBy": "76248934691294444" }
- Mock server
https://idp.cdq.com/_mock/apis/identity-management-api/api-v2/quotas/resources/workspaces/{id}
- Production SOAP
https://user-management-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/soap/v2/quotas/resources/workspaces/{id}
- Production
https://user-management-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/quotas/resources/workspaces/{id}
curl -i -X PUT \
https://idp.cdq.com/_mock/apis/identity-management-api/api-v2/quotas/resources/workspaces/6633348b2b5f2b772013eb91 \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"quota": "1"
}'{ "id": "6633348b2b5f2b772013eb91", "workspaceId": "c074b9f3-abf0-4f8e-9a20-74deb6cfa2a4", "quota": "1", "usage": "1", "resource": { "technicalKey": "API_KEYS" }, "createdAt": "2020-08-31T16:47+00:00", "createdBy": "76248934691294444", "modifiedAt": "2020-08-31T16:47+00:00", "modifiedBy": "76248934691294444" }
- Mock server
https://idp.cdq.com/_mock/apis/identity-management-api/api-v2/quotas/resources/workspaces/{id}
- Production SOAP
https://user-management-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/soap/v2/quotas/resources/workspaces/{id}
- Production
https://user-management-api.reverse-proxy.prod.k8s.production.cdq-cloud-engine.com/quotas/resources/workspaces/{id}
curl -i -X DELETE \
https://idp.cdq.com/_mock/apis/identity-management-api/api-v2/quotas/resources/workspaces/6633348b2b5f2b772013eb91 \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'