GET api/Account/UserInfo

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

UserInfo
NameDescriptionTypeAdditional information
Id

integer

None.

FullName

string

None.

LoginName

string

None.

GroupId

integer

None.

ExternalTranslationLimit

integer

None.

IsDocumentTranslator

boolean

None.

IsExcelTranslator

boolean

None.

IsPowerpointTranslator

boolean

None.

IsGroupAdmin

boolean

None.

StripeCustomerId

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "FullName": "sample string 2",
  "LoginName": "sample string 3",
  "GroupId": 4,
  "ExternalTranslationLimit": 5,
  "IsDocumentTranslator": true,
  "IsExcelTranslator": true,
  "IsPowerpointTranslator": true,
  "IsGroupAdmin": true,
  "StripeCustomerId": "sample string 10"
}

application/xml, text/xml

Sample:
<UserInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TTWebApi.Models">
  <ExternalTranslationLimit>5</ExternalTranslationLimit>
  <FullName>sample string 2</FullName>
  <GroupId>4</GroupId>
  <Id>1</Id>
  <IsDocumentTranslator>true</IsDocumentTranslator>
  <IsExcelTranslator>true</IsExcelTranslator>
  <IsGroupAdmin>true</IsGroupAdmin>
  <IsPowerpointTranslator>true</IsPowerpointTranslator>
  <LoginName>sample string 3</LoginName>
  <StripeCustomerId>sample string 10</StripeCustomerId>
</UserInfo>