Validity and complexity check for sub account's password
- Print
- PDF
Validity and complexity check for sub account's password
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
- 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
Parameter | Required | Type | Restrictions | Description |
---|---|---|---|---|
password | Y | String | Alphanumeric and special characters between 8 to 16 characters | Password |
Response
- Response
Parameter | Required | Type | Description |
---|---|---|---|
ProcessResult | Y | ProcessResult | Result of processing |
- Response Example - Success
{
"success": true,
"message": ""
}
- Response Example - Low complexity
{
"success": false,
"message": "Unsafe password."
}
Was this article helpful?