A user resource represents an individual user registered in the Rise application. Every resource in Rise has some kind of relation to a user. A task for example has a creator, assignee, and individual subscribers.

Users are identified by a UUID and are represented by the following fields in our public API:

{
  "uuid": "",              # The unique identifier of the user
  "email": "",             # The main email address of the user
  "first_name": "",        # The first name of the user
  "last_name": "",         # The last name of the user
  "profile_image_url": "", # The profile image url of the user
  "username": "",          # The username of the user
}

GET /users/me

Retrieves the currently authenticated user

curl -H 'Authorization: Bearer TOKEN' <https://api.risecalendar.com/v1/users/me>

Response

{
  "uuid": "53dcb3f5-539e-4d2e-9143-009e1b01ef01",
  "email": "[email protected]",
  "first_name": "Yukihiro",
  "last_name": "Matsumoto",
  "profile_image_url": null,
  "username": "matz",
}