Change Password
PUThttps://$CUSTOM-DOMAIN/auth/v1/users/me/password
Changes the password of the authenticated user. Make sure the password follows the password complexity policy.
Request​
- application/json
- application/grpc
- application/grpc-web+proto
Body
required
oldPassword stringrequired
Possible values: non-empty
newPassword stringrequired
Possible values: non-empty
Body
required
oldPassword stringrequired
Possible values: non-empty
newPassword stringrequired
Possible values: non-empty
Body
required
oldPassword stringrequired
Possible values: non-empty
newPassword stringrequired
Possible values: non-empty
Responses​
- 200
- default
A successful response.
- application/json
- application/grpc
- application/grpc-web+proto
- Schema
- Example (from schema)
Schema
details
object
{
"details": {
"sequence": "2",
"creationDate": "2025-03-06T11:55:22.336Z",
"changeDate": "2025-03-06T11:55:22.336Z",
"resourceOwner": "69629023906488334"
}
}
- Schema
- Example (from schema)
Schema
details
object
{
"details": {
"sequence": "2",
"creationDate": "2025-03-06T11:55:22.336Z",
"changeDate": "2025-03-06T11:55:22.336Z",
"resourceOwner": "69629023906488334"
}
}
- Schema
- Example (from schema)
Schema
details
object
{
"details": {
"sequence": "2",
"creationDate": "2025-03-06T11:55:22.336Z",
"changeDate": "2025-03-06T11:55:22.336Z",
"resourceOwner": "69629023906488334"
}
}
An unexpected error response.
- application/json
- application/grpc
- application/grpc-web+proto
- Schema
- Example (from schema)
Schema
code int32
message string
details
object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
- Schema
- Example (from schema)
Schema
code int32
message string
details
object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
- Schema
- Example (from schema)
Schema
code int32
message string
details
object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X PUT 'https://$CUSTOM-DOMAIN/auth/v1/users/me/password' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
-d '{
"oldPassword": "MyOldPassword12!",
"newPassword": "MyNewPassword12!"
}'
ResponseClear