Verify user password
Test if the given password matches the user's password.
Path parameters
-
The unique identifier of the user.
POST /api/users/{userId}/password/verify
curl \
-X POST https://[tenant_id].logto.app/api/users/{userId}/password/verify \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"password":"string"}'
Request examples
{
"password": "string"
}