GET UserAuthentication/{id}?appid={appid}&adminhash={adminhash}&adminappid={adminappid}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
Required |
|
| appid | string |
Required |
|
| adminhash | string |
Required |
|
| adminappid | string |
None. |
Body Parameters
None.
Response Information
Resource Description
SecurityInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| appid | string |
None. |
|
| sg | string |
None. |
|
| hash | string |
None. |
|
| token | string |
None. |
|
| enduser_id | string |
None. |
|
| name | string |
None. |
|
| username | string |
None. |
|
| user_type | string |
None. |
|
| require_2fa | boolean |
None. |
|
| sid | string |
None. |
|
| guid | string |
None. |
|
| string |
None. |
||
| usertype | string |
None. |
|
| require_2fa_type | string |
None. |
|
| is_2fa_initialized | boolean |
None. |
|
| require_password_change | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"appid": "sample string 1",
"sg": "sample string 2",
"hash": "sample string 3",
"token": "sample string 4",
"enduser_id": "sample string 5",
"name": "sample string 6",
"username": "sample string 7",
"user_type": "sample string 8",
"require_2fa": true,
"sid": "sample string 10",
"guid": "sample string 11",
"email": "sample string 12",
"usertype": "sample string 13",
"require_2fa_type": "sample string 14",
"is_2fa_initialized": true,
"require_password_change": true
}
application/xml, text/xml
Sample:
<SecurityInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/productious_models"> <appid>sample string 1</appid> <email>sample string 12</email> <enduser_id>sample string 5</enduser_id> <guid>sample string 11</guid> <hash>sample string 3</hash> <is_2fa_initialized>true</is_2fa_initialized> <name>sample string 6</name> <require_2fa>true</require_2fa> <require_2fa_type>sample string 14</require_2fa_type> <require_password_change>true</require_password_change> <sg>sample string 2</sg> <sid>sample string 10</sid> <token>sample string 4</token> <user_type>sample string 8</user_type> <username>sample string 7</username> <usertype>sample string 13</usertype> </SecurityInfo>