Validity and complexity check for sub account's password
    • PDF

    Validity and complexity check for sub account's password

    • PDF

    Article Summary

    • Validate and check the complexity of a sub account's password.
    • The password must be a combination of alphanumeric and special characters that is between 8 - 16 characters.

    API

    • GET /join/check-password

    Request

    Parameters

    ParameterRequiredTypeRestrictionsDescription
    passwordYStringAlphanumeric and special characters between 8 to 16 charactersPassword

    Response

    • Response
    ParameterRequiredTypeDescription
    ProcessResultYProcessResultResult of processing
    • Response Example - Success
    {
        "success": true,
        "message": ""
    }
    
    • Response Example - Validity Error
    {
        "success": false,
        "message": "Password format is invalid. Enter between 8 to 16 alphanumeric characters, including special characters."
    }
    
    • Response Example - Low complexity
    {
        "success": false,
        "message": "Unsafe password."
    }
    

    Was this article helpful?

    Changing your password will log you out immediately. Use the new password to log back in.
    First name must have atleast 2 characters. Numbers and special characters are not allowed.
    Last name must have atleast 1 characters. Numbers and special characters are not allowed.
    Enter a valid email
    Enter a valid password
    Your profile has been successfully updated.