orchestrator
2025.10
false
- 基本情報
- 認証
- Swagger の定義
- Orchestrator API
- プラットフォーム管理 API

Orchestrator API ガイド
最終更新日時 2025年10月27日
組織およびロボット アカウント ID に基づいて、組織内の指定したロボット アカウントを削除します。
DELETE https://{yourDomain}/identity/api/RobotAccount/{partitionGlobalId}/{robotAccountId}--header 'Authorization: Bearer {access_token}'\
--header 'Content-Type: application/json'--header 'Authorization: Bearer {access_token}'\
--header 'Content-Type: application/json'|
パス パラメーター |
データ型 |
説明 |
|---|---|---|
|
(必須) |
文字列 |
ロボット アカウントの削除元の組織の ID です。 |
|
(必須) |
文字列 |
削除するロボット アカウントの ID です。 |
API 呼び出しの構築に必要な情報をすべて収集したとします。
- Your
{baseURL}is: https://{yourDomain}/identity -
{access_token}は1234です (長さを考慮)。 {partitionGlobalId}は3fa85f64-5717-4562-b3fc-2c963f66afa6です。{robotAccountId}は33-abです。
呼び出しは次の例のようになります (cURL)。
curl --location --request DELETE 'https://{yourDomain}/identity/api/RobotAccount/3fa85f64-5717-4562-b3fc-2c963f66afa6/33-ab' \
--header 'Authorization: Bearer 1234' \
--header 'Content-Type: application/json'curl --location --request DELETE 'https://{yourDomain}/identity/api/RobotAccount/3fa85f64-5717-4562-b3fc-2c963f66afa6/33-ab' \
--header 'Authorization: Bearer 1234' \
--header 'Content-Type: application/json'