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