GET api/user/AuthenticateInternally?authId={authId}&datexUserId={datexUserId}&componentId={componentId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
authId

string

Required

datexUserId

integer

Required

componentId

string

Required

Body Parameters

None.

Response Information

Resource Description

DatexUser
NameDescriptionTypeAdditional information
UserId

integer

None.

Username

string

None.

Password

string

None.

Email

string

None.

IsActive

boolean

None.

DefaultHomePage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "UserId": 1,
  "Username": "sample string 2",
  "Password": "sample string 3",
  "Email": "sample string 4",
  "IsActive": true,
  "DefaultHomePage": "sample string 6"
}

text/html

Sample:
{"UserId":1,"Username":"sample string 2","Password":"sample string 3","Email":"sample string 4","IsActive":true,"DefaultHomePage":"sample string 6"}

application/xml, text/xml

Sample:
<DatexUser xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UserManagement">
  <DefaultHomePage>sample string 6</DefaultHomePage>
  <Email>sample string 4</Email>
  <IsActive>true</IsActive>
  <Password>sample string 3</Password>
  <UserId>1</UserId>
  <Username>sample string 2</Username>
</DatexUser>