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 のリストが含まれます。
{
"partitionGlobalId": "string",
"userIds": [
"string"
]
}
{
"partitionGlobalId": "string",
"userIds": [
"string"
]
}
API 呼び出しの構築に必要な情報をすべて収集したとします。
{baseURL}
はhttps://{yourDomain}/{organizationName}/{tenantName}/
です。-
{access_token}
は1234
です (長さを考慮)。 {partitionGlobalId}
はmagic-7
です。-
削除するユーザーの ID は次のとおりです。
- Dolores Umbridge:
dol-2908
- Quirinus Quirrell:
qui-2609
- Dolores Umbridge:
呼び出しは以下のようになります (cURL)。
curl --location --request DELETE 'https://{yourDomain}/{organizationName}/{tenantName}/identity_/api/User' \
--header 'Authorization: Bearer 1234' \
--header 'Content-Type: application/json'
--data-raw '{
"partitionGlobalId": "magic-7",
"userIds": [
"dol-2908", "qui-2609"
]
}'
curl --location --request DELETE 'https://{yourDomain}/{organizationName}/{tenantName}/identity_/api/User' \
--header 'Authorization: Bearer 1234' \
--header 'Content-Type: application/json'
--data-raw '{
"partitionGlobalId": "magic-7",
"userIds": [
"dol-2908", "qui-2609"
]
}'