GET api/GetUserClaims
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
AccountModelName | Description | Type | Additional information |
---|---|---|---|
UserId | integer |
None. |
|
UserName | string |
None. |
|
LoweredUserName | string |
None. |
|
AccountId | integer |
None. |
|
LoggedOn | string |
None. |
|
IsAdmin | boolean |
None. |
|
AllProviders | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{ "UserId": 1, "UserName": "sample string 2", "LoweredUserName": "sample string 3", "AccountId": 4, "LoggedOn": "sample string 5", "IsAdmin": true, "AllProviders": true }
application/xml, text/xml
Sample:
<AccountModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NextrustWebAPI.Models"> <AccountId>4</AccountId> <AllProviders>true</AllProviders> <IsAdmin>true</IsAdmin> <LoggedOn>sample string 5</LoggedOn> <LoweredUserName>sample string 3</LoweredUserName> <UserId>1</UserId> <UserName>sample string 2</UserName> </AccountModel>