updateUser

POST /updateUser

Update an existing User’s password.

Example Request

POST /updateUser HTTP/1.1
Content-Type: application/json
Accept: application/json

{
  "apikey": "E14D8D73-0C78-4583-897A-EE9C1B10E10A",
  "sessionId": "48F2E9A0-ABD6-4C80-B8DA-61D0DDE4A43B",
  "password": "1234"
}

Example Response

HTTP/1.1 200 OK
Content-Type: application/json

{
  "data": null,
  "success": true,
  "message": "Successfully updated user password."
}
Request JSON Object:
 
  • apikey (string) – User API key
  • sessionid (string) – User session ID
  • password (string) – New password for the user
Response JSON Object:
 
  • data – Response data
  • successtrue if password change successful, false otherwise
  • message – Response message