GET users/me

Gets the information of the current user.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

UserViewModel
NameDescriptionTypeAdditional information
Id

integer

None.

Username

string

Filterable

Profile

UserProfileViewModel

Filterable

SelfUrl

string

None.

Response Formats

application/json, text/json

Sample:
{
  "id": 1,
  "username": "sample string 2",
  "profile": {
    "firstname": "sample string 1",
    "lastname": "sample string 2"
  },
  "selfUrl": "sample string 3"
}