User password change request using the user uid
PATCHhttps://api.spectrocloud.com/v1/users/:uid/password/change
User password change request via current password
Request
Path Parameters
uid stringrequired
- application/json
Body
required
currentPasswordstring
newPasswordstringrequired
Responses
- 204
Ok response without content
Response Headers
- curl
- python
- go
- nodejs
- java
- CURL
curl -L -X PATCH 'https://api.spectrocloud.com/v1/users/:uid/password/change' \
-H 'Content-Type: application/json' \
-H 'ApiKey: <API_KEY_VALUE>' \
-d '{
"currentPassword": "string",
"newPassword": "string"
}'