Create password verification record
Create and verify a new Password verification record. The verification record can only be created if the provided user credentials are correct.
Body Required
-
The unique identifier of the user that will be used to identify the user along with the provided password.
-
The user password.
Minimum length is
1
.
Responses
-
200 application/json
The Password verification record has been successfully created and verified.
-
The verification attempts have exceeded the maximum limit.
-
The user is suspended or banned from the service.
-
session.invalid_credentials:
Either the user is not found or the provided password is incorrect.
POST /api/experience/verification/password
curl \
-X POST https://[tenant_id].logto.app/api/experience/verification/password \
-H "Content-Type: application/json" \
-d '{"identifier":{"type":"username","value":"string"},"password":"string"}'
Request examples
{
"identifier": {
"type": "username",
"value": "string"
},
"password": "string"
}
Response examples (200)
{
"verificationId": "string"
}