Box Developer Documentation
Latest version

Submit job to delete external users

post
https://api.box.com/2.0
/external_users/submit_delete_job

Delete external users from current user enterprise. This will remove each external user from all invited collaborations within the current enterprise.

Request

bearer [ACCESS_TOKEN]
application/json

Request Headers

stringin headerrequired

Version header.

Value is always 2025.0

Request Body

object arrayin bodyrequired

List of external users to delete.

stringin bodyrequired
"12345"

The unique identifier for the user.

stringin bodyrequired
"user"

The value is always user.

Value is always user

Response

Multi-status response containing the result for each external user deletion request.

application/jsonClient error

Returns an error if the listed external users are not found, or the authenticated user does not have the right permissions to delete external users.

application/jsonClient error

An unexpected client error.

post
Submit job to delete external users
You can now try out some of our APIs live, right here in the documentation.
Log in

Response Example

{
  "entries": [
    {
      "status": 202,
      "user_id": "12345"
    }
  ]
}