Create a record by password
Create a verification record by verifying the password.
POST /api/verifications/password
curl \
-X POST https://[tenant_id].logto.app/api/verifications/password \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"password":"string"}'
Request examples
{
"password": "string"
}
Response examples (201)
{
"verificationRecordId": "string",
"expiresAt": "string"
}