Developers Guide

Table Of Contents
Table 15. Attributes (continued)
Attribute Description
AuthFailureLoggingThreshold Number of authorization failures that need to occur before
the failure attempt is logged to the manager log.
MinPasswordLength Minimum password length.
MaxPasswordLength Maximum password length.
AccountLockoutThreshold The number of failed login attempts before a user account is
locked for a specified duration. 0 indicates that the account is
never locked.
AccountLockoutDuration The time in seconds an account is locked for after the
account lockout threshold is met. This value must equal to or
higher than the AccountLockoutResetAfter value. 0 indicates
that the account is never locked.
AccountLockoutCounterResetAfter The interval of time in seconds since the last failed login
attempt at which point the lockout threshold counter for
the account is reset to zero. Must be less than or equal to
AccountLockoutDuration.
EnableIpRangeAddress Enable or disable IP range address.
IpRangeAddress IP rage address to be used.
ByUserName Configure the service by user name.
ByIPAddress Configure the service by IP address.
/api/AccountService/Accounts
This URI represents the collection of accounts.
GET method for Accounts
This method returns a collection of accounts.
Description
Returns the collection of accounts.
Privilege VIEW
HTTP response
codes
200
Example
response body
{
"@odata.context": "/api/
$metadata#Collection(AccountService.Account)",
"@odata.count": 6,
"value": [
{
"@odata.type": "#AccountService.Account",
"@odata.id": "/api/AccountService/Accounts('10042')",
"Id": "10042",
"UserTypeId": 1,
"DirectoryServiceId": 0,
"Description": "root",
"Name": "root",
"Password": null,
"UserName": "root",
"RoleId": "10",
"Locked": false,
"IsBuiltin": true,
"Enabled": true,
Application settings 47