automation-cloud-public-sector
latest
false
- 入门指南
- 身份验证
- 作用域和权限
- 平台管理 API
重要 :
请注意,此内容已使用机器翻译进行了本地化。
适用于公共部门的 Automation Cloud API 指南
Last updated 2024年9月19日
向用户分配许可证
作为组织管理员,您可以使用此端点根据用户 ID 向用户分配许可证。
--header 'Authorization: Bearer {access_token}'\
--header 'Content-Type: application/json'
--header 'Authorization: Bearer {access_token}'\
--header 'Content-Type: application/json'
注意:要获取
{access_token}
,请确保通过所述的 ROPC 方法进行身份验证。
请求正文包含各种产品的许可证代码数组及其相应的数量。
{
"userIds": ["string"],
"userBundleCodes": ["string"],
"useExternalLicense": true
}
{
"userIds": ["string"],
"userBundleCodes": ["string"],
"useExternalLicense": true
}
备注:
- 要查看可在请求正文中使用的许可证代码,请查看用户许可证代码。
- 您可以分配与组织购买的许可证一样多的许可证。
- 每个用户使用一个许可证单元。
假设您收集了构建 API 调用所需的所有信息。
- 您的
{baseURL}
为:https://govcloud.uipath.us//{organizationName}
。 - 您的
{access_token}
为:1234
(出于长度考虑)。 - 需要分配许可证的租户
{accountId}
为:song-one
- 您的三个用户需要许可证:
userId
=singer-77
的用户 1userId
=singer-88
的用户 2userId
=singer-111
的用户 3
- 您要分配以下用户许可证:
调用应如下所示 (cURL):
curl --location --request POST 'https://https://govcloud.uipath.us/{organizationName}/lease_/api/account/1234/user-license' \
--header 'Authorization: Bearer 1234' \
--header 'Content-Type: application/json' \
--data-raw '{
"userIds": ["singer-77", "singer-88", "singer-111"]
"userBundleCodes": ["RPADEVNU", "ATTUNU", "TSTNU"],
"useExternalLicense": true
}
curl --location --request POST 'https://https://govcloud.uipath.us/{organizationName}/lease_/api/account/1234/user-license' \
--header 'Authorization: Bearer 1234' \
--header 'Content-Type: application/json' \
--data-raw '{
"userIds": ["singer-77", "singer-88", "singer-111"]
"userBundleCodes": ["RPADEVNU", "ATTUNU", "TSTNU"],
"useExternalLicense": true
}
以下是成功分配许可证的响应正文:
[
{
"userId": "string",
"organizationId": "string",
"useExternalLicense": true,
"userBundleCodes": [
"string"
]
}
]
[
{
"userId": "string",
"organizationId": "string",
"useExternalLicense": true,
"userBundleCodes": [
"string"
]
}
]