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>"
}
'

Documentation Index

Fetch the complete documentation index at: https://api-docs.iklim.co/llms.txt

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

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