GET Account/UserAuthInfo?username={username}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
username

string

Required

Body Parameters

None.

Response Information

Resource Description

UserInfoViewModel
NameDescriptionTypeAdditional information
Forename

string

None.

Surname

string

None.

Email

string

None.

UserName

string

None.

CurrentToken

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Forename": "sample string 1",
  "Surname": "sample string 2",
  "Email": "sample string 3",
  "UserName": "sample string 4",
  "CurrentToken": "sample string 5"
}

application/xml, text/xml

Sample:
<UserInfoViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MMSharedObjects.Models">
  <CurrentToken>sample string 5</CurrentToken>
  <Email>sample string 3</Email>
  <Forename>sample string 1</Forename>
  <Surname>sample string 2</Surname>
  <UserName>sample string 4</UserName>
</UserInfoViewModel>