automation-cloud
latest
false
- Démarrage
- Authentification
- Étendues et autorisations
- API de gestion de plate-forme
Important :
Veuillez noter que ce contenu a été localisé en partie à l’aide de la traduction automatique.
La localisation du contenu nouvellement publié peut prendre 1 à 2 semaines avant d’être disponible.

Guide d'administration d'Automation Cloud
Dernière mise à jour 12 déc. 2025
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
--header 'Authorization: Bearer {access_token}'--header 'Authorization: Bearer {access_token}'| Paramètre du chemin d'accès | Type de données | Description |
|---|---|---|
|
(requis) | GUID | L'ID de l'organisation dans laquelle réside votre locataire. |
|
(requis) | Chaîne de caractères (string) |
L'ID du groupe auquel vous souhaitez attribuer des licences. Vous pouvez récupérer cet ID en suivant ces étapes. |
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}'Voici le corps de la réponse pour une allocation de licence réussie :
{
"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
}
]
}