Auth - Update - Password

/auth/update/password/{password}
Changes a users password.  The password can be SHA-256 encoded or plaintext and the API will encode it then. (We recommend passing the password encoded for obvious security reasons).
Possible Methods

GET

Arguments

password (required)
new password to set for current user, encrypted with SHA-256 (base 64) or plain text and URL-encoded

Json Object

n/a

 

Example
curl -b cookies.txt -X GET "http://localhost:8185/auth/update/password/8675301" > response.txt

 

Example Response
curl -b cookies.txt -X GET "http://localhost:8185/auth/update/password/8675301" > response.txt
{
    "response": {
        "action": "Login",
        "success": true,
        "message": "Password updated successfully",
        "time": 0
    }
}