---
title: "Reset user password"
method: POST
path: "/api/v1/changePassword"
tags: ["Authentication"]
---

# Reset user password

`POST /api/v1/changePassword`

Resets a user's password using a valid token received via email or other secure channel

## Request body

- ResetPasswordForm
  - `token` string, required
  - `password` string, required

## Response `200`

Password reset successfully

- ResponseEntityPasswordResetView
  - `errors` ErrorEntity[]
    - `errorCode` string
    - `message` string
    - `fieldName` string
  - `entity` string
  - `messages` MessageEntity[]
    - `message` string
  - `i18nMessagesMap` object
  - `permissions` string[]
  - `pagination` Pagination
    - `currentPage` integer
    - `perPage` integer
    - `totalEntries` integer

## Other responses

- `400` — Bad request - invalid login, token, or password
- `403` — Forbidden - token expired or invalid
- `500` — Internal server error

---

[API](https://skmtc.dev/jostens/apis/dotcms-rest-api.md) · [All operations](https://skmtc.dev/jostens/apis/dotcms-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/jostens/dotcms-rest-api/revisions/a088fe9f515c/schema)
