Backend API
Update a user’s password
cURL
curl --request PATCH \ --url https://api.wacht.dev/users/{user_id}/password \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "password": "<string>" } '
{ "message": "Resource not found" }
API key authentication (Bearer token)
Password updated successfully
Was this page helpful?