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.

IsExcelTranslator

boolean

None.

IsDocumentTranslator

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,
  "IsExcelTranslator": true,
  "IsDocumentTranslator": true,
  "IsGroupAdmin": true,
  "StripeCustomerId": "sample string 9"
}

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>
  <LoginName>sample string 3</LoginName>
  <StripeCustomerId>sample string 9</StripeCustomerId>
</UserInfo>