automation-cloud
latest
false
- 入门指南
- 身份验证
- 作用域和权限
- 平台管理 API

Automation Cloud API 指南
上次更新日期 2025年12月12日
Retrieves the current license allocation and quota configuration for a group. Requires an external application with the scope
PM.License.Read.
GET <https:///{organizationName}/lease_/api/account/{accountId}/user-license/group/{groupId}/with-quota>https://cloud.uipath.com
| 路径参数 | 数据类型 | 描述 |
|---|---|---|
|
(必填) | Guid | 租户所在组织的 ID。 |
|
(必填) | 字符串 |
要向其分配许可证的组的 ID。 您可以通过以下步骤检索此 ID。 |
200 OK
Returns the allocated group licenses with configured quotas and current usage.404
Organization or group does not exist.The request should resemble the following example (cURL):
curl --location --request GET 'https://https://cloud.uipath.com/{organizationName}/lease_/api/account/1234/user-license/group/group-01/with-quota' \
--header 'Authorization: Bearer {access_token}'curl --location --request GET 'https://https://cloud.uipath.com/{organizationName}/lease_/api/account/1234/user-license/group/group-01/with-quota' \
--header 'Authorization: Bearer {access_token}'以下是成功分配许可证的响应正文:
{
"groupRule": {
"groupId": "group-01",
"organizationId": "1234",
"userBundleCodes": ["RPADEVPRONU", "IDU"]
},
"quotas": [
{
"userBundleCode": "RPADEVPRONU",
"limit": 10,
"currentUsage": 3
}
]
}{
"groupRule": {
"groupId": "group-01",
"organizationId": "1234",
"userBundleCodes": ["RPADEVPRONU", "IDU"]
},
"quotas": [
{
"userBundleCode": "RPADEVPRONU",
"limit": 10,
"currentUsage": 3
}
]
}