GET User

GET /users/(uid)

Retrieve directory information for a given user.

Parameters:
  • uid (string) – User id to retrieve. As a special case, callers may pass - as the uid to request information about the currently-logged-in user.
Status Codes:
Response Headers:
 
Response JSON Object:
 
  • uid (string) – User id of the requested user.
  • email (string) – Email address of the requested user.
  • name (string) – Full name of the requested user.

Sample Response

{
  "uid": "frfreder",
  "email": "fred@example.com",
  "name": "Fred R. Frederickson",
}