- Validate a password
Create a password
Update a password
Initiate lost password process
Resume lost password process
Get user authentication factors
Enrol a user device for authentication using one-time passwords
Verify enrolment of a user device for authentication using one-time passwords
Enrol a user device for authentication using push notifications
Unlink a user device for authentication using push notifications
Validate a password
Check that a password adheres to all complexity checks.
Security
api-key
The user's password or passcode used to log in a user. Passwords must be:
- minimum 8 characters for end-users (Consumers and Corporates); 12 characters for others
- maximum 30 characters
- include a lowercase character
- include an uppercase character
- include a digit and a special character
- different from any of the 5 last such passwords used.
For non-PCI compliant integrations, the password submitted must be tokenised.
- Weavr Sandbox Environmenthttps://sandbox.weavr.io/multi/passwords/validate
- Mock serverhttps://api.weavr.io/_mock/products/multi/openapi/passwords/validate
curl -i -X POST \
https://sandbox.weavr.io/multi/passwords/validate \
-H 'Content-Type: application/json' \
-H 'api-key: YOUR_API_KEY_HERE' \
-d '{
"password": {
"value": "pa$$word"
}
}'Response
No content