Skip to main content
POST
/
v1
/
users
/
password-reset
Password Reset Operation
curl --request POST \
  --url https://api.iklim.co/v1/users/password-reset \
  --header 'Content-Type: application/json' \
  --data '{
  "userId": "88a52d74-ebee-49a4-9631-cfe492f4bf53",
  "token": "937bf90f-0f4b-46ff-b714-43513ba5eeec",
  "newPassword": "newStr0ng!P@ssw0rd",
  "loginPageLink": "https://ui.iklim.co/login"
}'
This response does not have an example.

Body

application/json
userId
string
required

User Identifier Required for Password Reset

Example:

"88a52d74-ebee-49a4-9631-cfe492f4bf53"

token
string
required

Token Returned in the Password Reset Request Response or Passed as a Parameter to the Redirected Page

Example:

"937bf90f-0f4b-46ff-b714-43513ba5eeec"

newPassword
string
required

New Password

Example:

"newStr0ng!P@ssw0rd"

Page Link to Redirect to if the Password Reset Operation is Successful. Not Mandatory. If Provided; the 'message' Parameter is Added to the Link as a Result of the Password Change Operation.

Example:

"https://ui.iklim.co/login"

Response

Successful Password Reset