POST api/updatePassowordPolicy?vModule={vModule}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| vModule | string |
Required |
Body Parameters
clsPasswordPolicy| Name | Description | Type | Additional information |
|---|---|---|---|
| PasswordMinLength | integer |
None. |
|
| PasswordMaxLength | integer |
None. |
|
| IsRequireDigits | boolean |
None. |
|
| IsRequireUpperCase | boolean |
None. |
|
| IsRequireLowerCase | boolean |
None. |
|
| IsRequiredSpecialChar | boolean |
None. |
|
| CreatedBy | string |
None. |
|
| CreatedAt | string |
None. |
|
| ModifiedBy | string |
None. |
|
| ModifiedAt | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"PasswordMinLength": 1,
"PasswordMaxLength": 2,
"IsRequireDigits": true,
"IsRequireUpperCase": true,
"IsRequireLowerCase": true,
"IsRequiredSpecialChar": true,
"CreatedBy": "sample string 7",
"CreatedAt": "sample string 8",
"ModifiedBy": "sample string 9",
"ModifiedAt": "sample string 10"
}
application/xml, text/xml
Sample:
<clsPasswordPolicy xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WFM_WebAPI.Models"> <CreatedAt>sample string 8</CreatedAt> <CreatedBy>sample string 7</CreatedBy> <IsRequireDigits>true</IsRequireDigits> <IsRequireLowerCase>true</IsRequireLowerCase> <IsRequireUpperCase>true</IsRequireUpperCase> <IsRequiredSpecialChar>true</IsRequiredSpecialChar> <ModifiedAt>sample string 10</ModifiedAt> <ModifiedBy>sample string 9</ModifiedBy> <PasswordMaxLength>2</PasswordMaxLength> <PasswordMinLength>1</PasswordMinLength> </clsPasswordPolicy>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GenericApiResponseOfObject| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | integer |
None. |
|
| ErrorDesc | string |
None. |
|
| Data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": 1,
"ErrorDesc": "sample string 2",
"Data": {}
}
application/xml, text/xml
Sample:
<GenericApiResponseOfanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WFM_WebAPI.dto.response"> <Data /> <ErrorDesc>sample string 2</ErrorDesc> <Status>1</Status> </GenericApiResponseOfanyType>