When you use the login API, the server returns the BackendlessUser object. It should have all the properties except for password. Alternatively, you can use the API you referenced (Backendless.UserService.CurrentUser()). The BackendlessUser class provides the “getProperty” method which would give you the value of the property you need.
I Was wondering on what is the fastest/best way to retrieve all properties on a set of users.
For example, I have a table called “Groups” which has a list of users in a data relation table, and i want to not only retrieve al the users, but their properties (Phone number, email, location, etc.).
Right now I just call “.getProperties()” on every single user, but can i call the server once and get all the same information? Thanks.