Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 707 Bytes

users.md

File metadata and controls

21 lines (15 loc) · 707 Bytes

Users

Users represent an individual's account on Box.

Get the Current User's Information

To get the current user, call the static [getCurrentUser(BoxAPIConnection)] get-current-user method. Then use getInfo() to get information about the user.

BoxUser user = BoxUser.getCurrentUser(api);
BoxUser.Info info = user.getInfo();