GET api/System/UserAuthentication

Validates and gets user data for the user provided in the http header.

Access

Requires authentication.

Requires SSL.

Response Information

Response body formats

application/xml, text/xml

Sample:
<ApiResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <ResponseCode>1</ResponseCode>
  <ResponseDescription>sample string 2</ResponseDescription>
  <MethodExpirationDate>2024-05-21T07:03:44.660506+02:00</MethodExpirationDate>
  <ResponseObject>
    <UserName>sample string 1</UserName>
    <Email>sample string 2</Email>
    <IsAuthenticated>true</IsAuthenticated>
  </ResponseObject>
</ApiResponse>

application/json, text/json

Sample:
{
  "ResponseCode": 1,
  "ResponseDescription": "sample string 2",
  "MethodExpirationDate": "2024-05-21T07:03:44.660506+02:00",
  "ResponseObject": {
    "UserName": "sample string 1",
    "Email": "sample string 2",
    "IsAuthenticated": true
  }
}