orchestrator
2023.4
false
- 基本情報
- 認証
- Swagger の定義
- Orchestrator API
- プラットフォーム管理 API
[プレビュー] ロボット アカウントを削除する
重要 :
このコンテンツの一部は機械翻訳によって処理されており、完全な翻訳を保証するものではありません。
Orchestrator API ガイド
Last updated 2024年6月18日
[プレビュー] ロボット アカウントを削除する
組織 ID に基づいて、組織から複数のロボット アカウントを削除します。
--header 'Authorization: Bearer {access_token}'\
--header 'Content-Type: application/json'
--header 'Authorization: Bearer {access_token}'\
--header 'Content-Type: application/json'
要求本文には、組織から一括削除するロボット アカウント ID のリストが含まれます。
{
"robotAccountIDs": [
"string",
"string"
]
}
{
"robotAccountIDs": [
"string",
"string"
]
}
API 呼び出しの構築に必要な情報をすべて収集したとします。
{baseURL}
はhttps://{yourDomain}/{organizationName}/{tenantName}/
です。-
{access_token}
は1234
です (長さを考慮)。 {partitionGlobalId}
はmagic-7
です。-
削除するロボット アカウントの ID は次のとおりです。
- Bot1:
11-xy
- Bot2:
22-tz
- Bot1:
呼び出しは以下のようになります (cURL)。
curl --location --request DELETE 'https://{yourDomain}/{organizationName}/{tenantName}/identity_/api/RobotAccount/magic-7' \
--header 'Authorization: Bearer 1234' \
--header 'Content-Type: application/json'
--data-raw '{
"robotAccountIDs": [
"11-xy",
"22-tz"
]
}'
curl --location --request DELETE 'https://{yourDomain}/{organizationName}/{tenantName}/identity_/api/RobotAccount/magic-7' \
--header 'Authorization: Bearer 1234' \
--header 'Content-Type: application/json'
--data-raw '{
"robotAccountIDs": [
"11-xy",
"22-tz"
]
}'