GetPasswordPolicy

Gets the password policy

When a token is supplied the password policy for that user will be gotten, else the default will be returned.

Authentication Methods


  1. With a username and password
Input Parameter Type Description
Token String
Output Parameter Type Description
Success Boolean
CURL EXAMPLE
curl -v 'https://secure.nomadesk.com/ctrller/api.php?Task=GetPasswordPolicy'
RESPONSE

<Response>
    <Status>1</Status>
    <Message>Success</Message>
    <Policy>
        <Length>8</Length>
        <Expiry>30</Expiry>
        <Numbers>true</Numbers>
        <SpecialChars>false</SpecialChars>
        <MixedCasing>false</MixedCasing>
        <NotUsername>true</NotUsername>
    </Policy>
</Response>