PUT
/
frontend
/
api
/
v1
/
auth
/
{user-id}
/
password
curl --request PUT \
  --url https://{host}/frontend/api/v1/auth/{user-id}/password \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data 'new-password=<string>' \
  --data 'old-password=<string>'
This response does not have an example.

Authorizations

Authorization
string
header
required

API Key Security (Header).

Path Parameters

user-id
integer
required

User ID.

Required range: x >= 1

Query Parameters

logout-all
boolean
default:false

Invalidate other sessions

Body

application/x-www-form-urlencoded

Response

204

No Content