Skip to main content
POST
/
api
/
users
/
{user_id}
/
password
Reset Password Route
curl --request POST \
  --url https://api.example.com/api/users/{user_id}/password \
  --header 'Content-Type: application/json' \
  --data '
{
  "new_password": "<string>",
  "must_change_pw": true
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://www.halite-app.com/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

user_id
string<uuid>
required

Body

application/json
new_password
string
required
Required string length: 8 - 1024
must_change_pw
boolean
default:true

Response

Successful Response