{
"userAppId": {
"userId": "string",
"appId": "string"
},
"password": {
"plaintext": "string"
}
}
curl --location --request POST 'http://dev-cn.your-api-server.com/v2/validate_password' \
--header 'Content-Type: application/json' \
--data-raw '{
"userAppId": {
"userId": "string",
"appId": "string"
},
"password": {
"plaintext": "string"
}
}'
{
"status": {
"code": {},
"description": "string",
"details": "string",
"stackTrace": [
"string"
],
"percentCompleted": 0,
"timeRemaining": 0,
"reqId": "string",
"internalDetails": "string",
"redirectInfo": {
"url": "string",
"resourceType": "string",
"oldResourceId": "string",
"newResourceId": "string"
}
},
"passwordViolations": {
"minimumLength": true,
"maximumLength": true,
"upperCaseNeeded": true,
"lowerCaseNeeded": true,
"numericNeeded": true,
"nonAlphanumericNeeded": true,
"passwordReuse": true,
"excludeNames": true,
"excludeEmail": true,
"noConfusingLetters": true,
"noSimplePasswords": true,
"noCommonVocabs": true,
"noOverlapWithOld": true,
"passwordLifespan": true
}
}