Auth

Activates a reset password request

POST
/api/v1/auth/reset/{resetId}
/api/v1/auth/reset/{resetId}

The Authorization access token

Authorization

Authorization
Required
<token>

Please enter a valid access token

In: header

Request Body

application/jsonOptional

The new password for the user

password
Required
string

Minimum length: 1Format: "password"

Path Parameters

resetId
Required
string

The reset request ID

curl -X POST "https://example.com/api/v1/auth/reset/string" \
  -H "Authorization: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "password": "pa$$word"
  }'

OK