automation-cloud
latest
false
- Erste Schritte
- Authentication
- Scopes und Berechtigungen
- Plattformverwaltungs-APIs
Wichtig :
Bitte beachten Sie, dass dieser Inhalt teilweise mithilfe von maschineller Übersetzung lokalisiert wurde.
Es kann 1–2 Wochen dauern, bis die Lokalisierung neu veröffentlichter Inhalte verfügbar ist.

Automation Cloud-API-Handbuch
Letzte Aktualisierung 20. März 2026
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
| Pfadparameter | Datentyp | Beschreibung |
|---|---|---|
|
(erforderlich) | GUID | Die ID der Organisation, in der sich Ihr Mandant befindet. |
groupId (erforderlich)
| String | The group ID. |
All query parameters are optional and used for pagination.
| Parameter | Typ | Beschreibung |
|---|---|---|
|
| Integer | Offset in results list |
top | Integer | Number of results to return. Maximum: 50. |
sortBy | String | Field name for ordering. Use UpperCamelCase C# property names. |
sortOrder | String | 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}'