Skip to main content
POST
/
api
/
users
/
{user_id}
/
password
Reset User Password
curl --request POST \
  --url https://api.example.com/api/users/{user_id}/password \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "new_password": "<string>"
}
'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-API-Key
string | null

Path Parameters

user_id
integer
required

Cookies

antidote_session
string | null

Body

application/json
new_password
string
required

Response

Successful Response

The response is of type Response Reset User Password Api Users User Id Password Post · object.