Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 533 Bytes

password_policy.rst

File metadata and controls

33 lines (22 loc) · 533 Bytes

Password Policy

Endpoint: /client/v1/password-policy

Method: GET

Example HTTP Request

GET /client/v1/password-policy HTTP/1.1
X-Client-ID: your-client-id
X-Client-Secret: your-client-secret

Response

{
    "code": 200,
    "message": "Success",
    "policy": {
        "min_length": 6,
        "uppercase": true,
        "lowercase": true,
        "digit": true,
        "wildcard": true
    }
}