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.
POST
/api/experience/verification/password
curl \
--request POST 'https://[tenant_id].logto.app/api/experience/verification/password' \
--header "Content-Type: application/json" \
--data '{"identifier":{"type":"username","value":"string"},"password":"string"}'
Request examples
{
"identifier": {
"type": "username",
"value": "string"
},
"password": "string"
}
Response examples (200)
{
"verificationId": "string"
}