Returns the full user record for the currently authenticated user. @return Request object
()
| 18 | * @return Request object |
| 19 | */ |
| 20 | public ItemRequest<User> me() { |
| 21 | |
| 22 | return new ItemRequest<User>(this, User.class, "/users/me", "GET"); |
| 23 | } |
| 24 | |
| 25 | /** |
| 26 | * Returns the full user record for the single user with the provided ID. |
no outgoing calls