Change password current user

Change password current user

Change the password for the current user account. This function is only available through a JWT token.

post

/api/user/change-password

Authorizations
Body
currentPasswordstringrequired
newPasswordstringrequired
Responses
curl -L \
  --request POST \
  --url 'https://studio.edgeimpulse.com/v1/api/user/change-password' \
  --header 'x-api-key: YOUR_API_KEY' \
  --header 'Content-Type: application/json' \
  --data '{"currentPassword":"text","newPassword":"text"}'
{
  "success": true,
  "error": "text"
}

Last updated

Was this helpful?