automation-cloud
latest
false
- 基本情報
- 認証
- 範囲と権限
- プラットフォーム管理 API

UiPath Automation Cloud API ガイド
最終更新日時 2026年3月20日
Retrieves the list of users who have acquired licenses from a specific group. Requires an external application with the
OrganizationAdmin or LicenseRead policy.
GET
https://cloud.uipath.com/{organizationName}/lease_/api/account/{organizationId}/user-license/group/{groupId}/bulk-users
All query parameters are optional and used for pagination.
| パラメーター | 入力 | 説明 |
|---|---|---|
|
| Integer | Offset in results list |
top | Integer | Number of results to return. Maximum: 50. |
sortBy | 文字列 | Field name for ordering. Use UpperCamelCase C# property names. |
sortOrder | 文字列 | Sort direction. Accepted values: asc, desc.
|
200 OK - returns the users who have acquired licenses from the specified group.
404 - organization or group does not exist.
{
"results": [
{
"id": "string",
"email": "string",
"name": "string",
"surname": "string",
"displayName": "string",
"lastInUse": "2026-01-01T00:00:00Z",
"userBundleLicenses": ["string"],
"orphan": false
}
],
"totalCount": 0
}{
"results": [
{
"id": "string",
"email": "string",
"name": "string",
"surname": "string",
"displayName": "string",
"lastInUse": "2026-01-01T00:00:00Z",
"userBundleLicenses": ["string"],
"orphan": false
}
],
"totalCount": 0
}curl --location --request GET 'https://cloud.uipath.com/my-org/lease_/api/account/1234/user-license/group/group-01/bulk-users' --header 'Authorization: Bearer {access_token}'curl --location --request GET 'https://cloud.uipath.com/my-org/lease_/api/account/1234/user-license/group/group-01/bulk-users' --header 'Authorization: Bearer {access_token}'