メインコンテンツへスキップ
POST
/
external_users
/
submit_delete_job
cURL
curl --request POST \
  --url https://api.box.com/2.0/external_users/submit_delete_job \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'box-version: <box-version>' \
  --data '
{
  "external_users": [
    {
      "type": "user",
      "id": "12345"
    }
  ]
}
'
{
  "entries": [
    {
      "user_id": "12345",
      "status": 202,
      "detail": "<string>"
    }
  ]
}
Box SDKのバージョニング戦略について詳しく学ぶ。」

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Headers

box-version
enum<string>
required

Version header.

利用可能なオプション:
2025.0

Body

application/json

現在の企業から外部ユーザーを削除するジョブの送信リクエスト。

external_users
ユーザーの参照 · object[]
required

削除する外部ユーザーのリスト。

Response

各外部ユーザー削除リクエストの結果を含む複数のステータスのレスポンス。

各外部ユーザー削除リクエストの結果を含む複数のステータスのレスポンス。

entries
外部ユーザーの削除結果 · object[]
required

各外部ユーザー削除リクエストの結果の配列。