ClassCharts API Docs

Change Password

Changes the login password for the current parent account

POST
/password
/password

The Authorization access token

Authorization

Authorization
Required
Basic <token>

This is the session_id returned when logging in. e.g. Basic eW91IHNob3VsZCBzdGFyIHRoaXMgcmVwbyE=

In: header

Request Body

application/x-www-form-urlencodedRequired

currentstring

newstring

repeatstring

curl -X POST "https://www.classcharts.com/apiv2parent/password" \
  -H "Authorization: Basic <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "current": "string",
    "new": "string",
    "repeat": "string"
  }'

Password changed

{
  "success": 0
}