GET api/MyUserInfo

Returns the authorized acount username and enviornment, this is a good method to test the bearer token authorization.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

UserInfo
NameDescriptionTypeAdditional information
username

string

None.

enviornment

string

None.

methods_access

string

None.

Response Formats

application/json, text/json

Sample:
{
  "username": "sample string 1",
  "enviornment": "sample string 2",
  "methods_access": "sample string 3"
}

application/xml, text/xml

Sample:
<UserInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ACMA_WebAPI">
  <enviornment>sample string 2</enviornment>
  <methods_access>sample string 3</methods_access>
  <username>sample string 1</username>
</UserInfo>