GET api/Users/GetApplicationUsers?app={app}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| app | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of BAuthUser| Name | Description | Type | Additional information |
|---|---|---|---|
| USR_Id | integer |
None. |
|
| USR_Guid | globally unique identifier |
None. |
|
| Username | string |
None. |
|
| Password | string |
None. |
|
| TwoFactorEnabled | boolean |
None. |
|
| TwoFactorProvider | byte |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"USR_Id": 1,
"USR_Guid": "19a84d91-6465-4003-8fd8-a0e8245be30f",
"Username": "sample string 1",
"Password": "sample string 2",
"TwoFactorEnabled": true,
"TwoFactorProvider": 64
},
{
"USR_Id": 1,
"USR_Guid": "19a84d91-6465-4003-8fd8-a0e8245be30f",
"Username": "sample string 1",
"Password": "sample string 2",
"TwoFactorEnabled": true,
"TwoFactorProvider": 64
}
]
application/xml, text/xml
Sample:
<ArrayOfBAuthUser xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BenefitSoftware.Base.Common">
<BAuthUser>
<Password>sample string 2</Password>
<TwoFactorEnabled>true</TwoFactorEnabled>
<TwoFactorProvider>64</TwoFactorProvider>
<USR_Guid>19a84d91-6465-4003-8fd8-a0e8245be30f</USR_Guid>
<USR_Id>1</USR_Id>
<Username>sample string 1</Username>
</BAuthUser>
<BAuthUser>
<Password>sample string 2</Password>
<TwoFactorEnabled>true</TwoFactorEnabled>
<TwoFactorProvider>64</TwoFactorProvider>
<USR_Guid>19a84d91-6465-4003-8fd8-a0e8245be30f</USR_Guid>
<USR_Id>1</USR_Id>
<Username>sample string 1</Username>
</BAuthUser>
</ArrayOfBAuthUser>