---
title: "Verify the password of a user"
method: POST
path: "/users/{user_id}/verify_password"
tags: ["Users"]
---

# Verify the password of a user

`POST /users/{user_id}/verify_password`

Check that the user's password matches the supplied input.
Useful for custom auth flows and re-verification.

## Path parameters

- `user_id` string, required

## Request body

- object
  - `password` string, required — The user password to verify

## Response `200`

The provided password was correct.

- object
  - `verified` boolean

## Other responses

- `400` — The user does not have a password set.
- `404` — The user does not exist.
- `422` — The provided password was incorrect.
- `500` — Request was not successful

---

[API](https://skmtc.net/clerk/apis/clerk-backend-api.md) · [All operations](https://skmtc.net/clerk/apis/clerk-backend-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/clerk/clerk-backend-api/versions/cf036e7951d3/schema)
