Skip to content
Guides

Reset a user password

Sets a new password using a valid password-reset token.

POST/v1/users/reset-password

Sets a new password using a valid password-reset token.

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

curl -X POST "https://example.com/v1/users/reset-password" \  -H "Content-Type: application/json" \  -d '{    "userId": "2f40d7e4-3d9c-4ab2-b04e-7a6a132db821",    "token": "replace_with_the_issued_token",    "newPassword": "Example-Password-2026!",    "confirmPassword": "Example-Password-2026!"  }'
Empty