Change Password

Changes the login password for the current parent account

POST
/password

Authorization

Authorization<token>

This is the session_id returned when logging in. It must be prefixed with Basic. e.g. Basic eW91IHNob3VsZCBzdGFyIHRoaXMgcmVwbyE=

In: header

Request Body

application/x-www-form-urlencodedRequired
currentstring
newstring
repeatstring
curl -X POST "https://www.classcharts.com/apiv2student/password" \
  -H "Authorization: <token>" \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -d 'current=string&new=string&repeat=string'

Password changed

{
  "success": 0
}