GET Users/UserInfo

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

UserInfoViewModel
NameDescriptionTypeAdditional information
Email

string

None.

HasRegistered

boolean

None.

LoginProvider

string

None.

Name

string

None.

CustomerName

string

None.

ImageUrl

string

None.

BilledTo

string

None.

Supplier

string

None.

SupplierName

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Email": "sample string 1",
  "HasRegistered": true,
  "LoginProvider": "sample string 3",
  "Name": "sample string 4",
  "CustomerName": "sample string 5",
  "ImageUrl": "sample string 6",
  "BilledTo": "sample string 7",
  "Supplier": "sample string 8",
  "SupplierName": "sample string 9"
}

application/xml, text/xml

Sample:
<UserInfoViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TMSWebAPI.Models">
  <BilledTo>sample string 7</BilledTo>
  <CustomerName>sample string 5</CustomerName>
  <Email>sample string 1</Email>
  <HasRegistered>true</HasRegistered>
  <ImageUrl>sample string 6</ImageUrl>
  <LoginProvider>sample string 3</LoginProvider>
  <Name>sample string 4</Name>
  <Supplier>sample string 8</Supplier>
  <SupplierName>sample string 9</SupplierName>
</UserInfoViewModel>