automation-suite
2023.10
true
- 基本情報
- 認証
- 範囲と権限
- プラットフォーム管理 API
- 製品コードのライセンス
- 組織にライセンスを割り当てる
- テナントにライセンスを割り当てる
- グループにライセンスを割り当てる
- ユーザーにライセンスを割り当てる
テナントにライセンスを割り当てる
重要 :
このコンテンツの一部は機械翻訳によって処理されており、完全な翻訳を保証するものではありません。
UiPath Automation Suite API ガイド
Last updated 2024年8月20日
テナントにライセンスを割り当てる
ホスト管理者は、このエンドポイントを使用して、テナント ID に基づきライセンスをテナントに割り当てます。
重要: 組織とテナントにライセンスを割り当てるには、ホスト資格情報を使用して認証する必要があります。
PUT
https://{yourDomain}/lrm/api/account/{accountId}/service-license/{serviceScopeId}/{serviceType}
注: テナントのすべての有効なサービスにライセンスを割り当てるには、サービスごとに個別の API 呼び出しを行う必要があります。
--header 'Authorization: Bearer {access_token}'\
--header 'Content-Type: application/json'
--header 'Authorization: Bearer {access_token}'\
--header 'Content-Type: application/json'
パス パラメーター |
データ型 |
説明 |
---|---|---|
(必須) |
文字列 |
テナントが存在する組織の ID。 |
(必須) |
文字列 |
ライセンスを割り当てるテナントの ID です。 |
(必須) |
文字列 |
サービスの種類。 |
要求本文には、さまざまな製品のライセンス コードの配列と、それらに対応する数量が含まれています。
{
"tenantName": "string",
"products":
[
{ "code": "string", "quantity": 0 }
]
}
{
"tenantName": "string",
"products":
[
{ "code": "string", "quantity": 0 }
]
}
注:
- 要求本文で使用できる利用可能なライセンス コードを確認するには、「ライセンス コード」をご覧ください。
- 組織が購入した数のライセンスを割り当てることができます。
割り当てられたサービス ライセンスを返します。
{
"accountId": "string",
"serviceScopeId": "string",
"serviceType": "string",
"license": {
"licenseCode": "string",
"bundleCode": "string",
"subscriptionCode": "string",
"licenseStatus": "string",
"startDate": 0,
"endDate": 0,
"gracePeriod": 0,
"products": [
{
"code": "string",
"quantity": 0,
"type": "string",
"features": [
{
"code": "string",
"type": "string",
"value": "string"
}
]
}
],
"templates": [
{
"productCode": "string",
"products": [
{
"code": "string",
"type": "string"
}
]
}
],
"payload": "string",
"boonLicenseCode": "string"
},
"userLicensingEnabled": true,
"accountLicenseCode": "string"
}
{
"accountId": "string",
"serviceScopeId": "string",
"serviceType": "string",
"license": {
"licenseCode": "string",
"bundleCode": "string",
"subscriptionCode": "string",
"licenseStatus": "string",
"startDate": 0,
"endDate": 0,
"gracePeriod": 0,
"products": [
{
"code": "string",
"quantity": 0,
"type": "string",
"features": [
{
"code": "string",
"type": "string",
"value": "string"
}
]
}
],
"templates": [
{
"productCode": "string",
"products": [
{
"code": "string",
"type": "string"
}
]
}
],
"payload": "string",
"boonLicenseCode": "string"
},
"userLicensingEnabled": true,
"accountLicenseCode": "string"
}
API 呼び出しの構築に必要な情報をすべて収集したとします。
{baseURL}
はhttps://tom-jones-server.com
です。{access_token}
は1234
です (長さを考慮)。- ライセンスの割り当てが必要なテナントの
{accountId}
はy-y-y-delilah
です。 {serviceScopeId}
はy1968
です。テナントで Document Understanding サービスが有効化されています。- 上記の組織に次の様に製品ライセンスを割り当てます。
呼び出しは以下のようになります (cURL)。
curl --location --request POST 'https://tom-jones-server.com/lrm/api/account/y-y-y-delilah/service-license/y1968/?????' \
--header 'Authorization: Bearer 1234' \
--header 'Content-Type: application/json' \
--data-raw '{
"productQuantities":
[
{ "code": "UNATT", "quantity": 5 },
{ "code": "NONPR", "quantity": 4 },
{ "code": "TIE", "quantity": 2 }
]
}'
curl --location --request POST 'https://tom-jones-server.com/lrm/api/account/y-y-y-delilah/service-license/y1968/?????' \
--header 'Authorization: Bearer 1234' \
--header 'Content-Type: application/json' \
--data-raw '{
"productQuantities":
[
{ "code": "UNATT", "quantity": 5 },
{ "code": "NONPR", "quantity": 4 },
{ "code": "TIE", "quantity": 2 }
]
}'
ライセンス割り当てに成功した場合の応答本文は次のとおりです。
{
"accountId": "y-y-y-delilah",
"serviceScopeId": "y1968",
"serviceType": "string",
"license": {
"licenseCode": "string",
"bundleCode": "string",
"subscriptionCode": "string",
"licenseStatus": "string",
"startDate": 0,
"endDate": 0,
"gracePeriod": 0,
"products": [
{
"code": "string",
"quantity": 0,
"type": "string",
"features": [
{
"code": "string",
"type": "string",
"value": "string"
}
]
}
],
"templates": [
{
"productCode": "string",
"products": [
{
"code": "string",
"type": "string"
}
]
}
],
"payload": "string",
"boonLicenseCode": "string"
},
"userLicensingEnabled": true,
"accountLicenseCode": "string"
}
{
"accountId": "y-y-y-delilah",
"serviceScopeId": "y1968",
"serviceType": "string",
"license": {
"licenseCode": "string",
"bundleCode": "string",
"subscriptionCode": "string",
"licenseStatus": "string",
"startDate": 0,
"endDate": 0,
"gracePeriod": 0,
"products": [
{
"code": "string",
"quantity": 0,
"type": "string",
"features": [
{
"code": "string",
"type": "string",
"value": "string"
}
]
}
],
"templates": [
{
"productCode": "string",
"products": [
{
"code": "string",
"type": "string"
}
]
}
],
"payload": "string",
"boonLicenseCode": "string"
},
"userLicensingEnabled": true,
"accountLicenseCode": "string"
}