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

Orchestrator API ガイド
最終更新日時 2025年10月27日
ユーザー ID に基づいて、組織から複数のユーザーを削除します。
--header 'Authorization: Bearer {access_token}'\
--header 'Content-Type: application/json'--header 'Authorization: Bearer {access_token}'\
--header 'Content-Type: application/json'要求本文には、組織から一括削除するユーザー ID のリストが含まれます。
{
"partitionGlobalId": "string",
"userIds": [
"string"
]
}{
"partitionGlobalId": "string",
"userIds": [
"string"
]
}API 呼び出しの構築に必要な情報をすべて収集したとします。
- Your
{baseURL}is: https://{yourDomain}/identity -
{access_token}は1234です (長さを考慮)。 {partitionGlobalId}は3fa85f64-5717-4562-b3fc-2c963f66afa6です。-
削除するユーザーの ID は次のとおりです。
- Dolores Umbridge:
dol-2908 - Quirinus Quirrell:
qui-2609
- Dolores Umbridge:
呼び出しは次の例のようになります (cURL)。
curl --location --request DELETE 'https://{yourDomain}/identity/api/User' \
--header 'Authorization: Bearer 1234' \
--header 'Content-Type: application/json'
--data-raw '{
"partitionGlobalId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"userIds": [
"dol-2908", "qui-2609"
]
}'curl --location --request DELETE 'https://{yourDomain}/identity/api/User' \
--header 'Authorization: Bearer 1234' \
--header 'Content-Type: application/json'
--data-raw '{
"partitionGlobalId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"userIds": [
"dol-2908", "qui-2609"
]
}'