Skip to main content
POST
/
v1
/
users
/
change-password
Change Password Operation
curl --request POST \
  --url https://api.iklim.co/v1/users/change-password \
  --header 'Content-Type: application/json' \
  --data '{
  "userId": "<string>",
  "oldPassword": "<string>",
  "newPassword": "<string>"
}'
This response does not have an example.

Body

application/json
userId
string
required

Identifier of the User Whose Password Will Be Changed

oldPassword
string
required

User's Old Password

newPassword
string
required

User's New Password. Only the User Themselves Can Perform the Password Change Operation!

Response

Password Change Successful