Deletes a user. By default this will fail if the user
still owns any content. Move their owned content first
before proceeding, or use the force field to delete
the user and their files.
12345The ID of the user.
trueWhether the user should be deleted even if this user still own files.
trueWhether the user will receive email notification of the deletion.
Removes the user and returns an empty response.
An unexpected client error.
curl -i -X DELETE "https://api.box.com/2.0/users/12345" \
-H "authorization: Bearer <ACCESS_TOKEN>"await client.users.deleteUserById(user.id);client.users.delete_user_by_id(user.id)await client.Users.DeleteUserByIdAsync(userId: user.Id);try await client.users.deleteUserById(userId: user.id)client.getUsers().deleteUserById(user.getId())BoxUser user = new BoxUser(api, "0");
user.delete(false, false);user_id = '33333'
client.user(user_id).delete(force=True)await client.UsersManager.DeleteEnterpriseUserAsync("44444", notify: false, force: true);// Delete the user even if they still have files in their account
client.users.delete('123', {force: true})
.then(() => {
// deletion succeeded — no value returned
});