Skip to main content
PUT
/
users
/
v1
/
api
/
user
/
changepassword
Change user password
curl --request PUT \
  --url https://api.qflowhub.io/users/v1/api/user/changepassword \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'Ocp-Apim-Subscription-Key: <api-key>' \
  --data '
{
  "id": "<string>",
  "oldPassword": "<string>",
  "newPassword": "<string>",
  "signOutAllSessions": true
}
'

Documentation Index

Fetch the complete documentation index at: https://docs.qflowhub.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

OAuth 2.0 access token issued by https://identity.qflowhub.io/core. Include as Authorization: Bearer <token>. See the Authentication guide for the token flow.

Ocp-Apim-Subscription-Key
string
header
required

Your APIM subscription key. Sent in the welcome email when your account is enabled. Required on every request alongside the bearer token.

Body

The user to change password for

id
string
required
oldPassword
string
required
newPassword
string
required
signOutAllSessions
boolean

Optional flag to sign out all active sessions (web dashboard and mobile apps) after password change. If not specified or false, other sessions will remain active.

Response

204

No Content