ユーザーを削除します。デフォルトでは、ユーザーがまだコンテンツを所有している状態では失敗します。削除を実行する前にユーザーが所有するコンテンツを移動するか、force
フィールドを使用してユーザーとそのユーザーが所有するファイルを削除してください。
curl -i -X DELETE "https://api.box.com/2.0/users/12345" \
-H "authorization: Bearer <ACCESS_TOKEN>"
await client.users.deleteUserById(createdUser.id);
client.users.delete_user_by_id(created_user.id)
await client.Users.DeleteUserByIdAsync(userId: createdUser.Id);
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
});
client.users.rollOutOfEnterprise(userId: "33333") { (result: Result<User, BoxSDKError>) in
guard case let .success(user) = result else {
print("Error removing user from enterprise")
return
}
print("User \(user.name) successfully removed from enterprise")
}