ClassCharts API Docs

Delete Parent Behaviour Point

Delets a behaviour point from a pupil's record.

POST
/deleteparentbehaviour/{studentId}
/deleteparentbehaviour/{studentId}

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

behaviour_idinteger

Path Parameters

studentId
Required
integer

curl -X POST "https://www.classcharts.com/apiv2parent/deleteparentbehaviour/0" \
  -H "Authorization: Basic <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "behaviour_id": 0
  }'

Behaviour point deleted

{
  "data": [
    null
  ],
  "meta": [
    null
  ],
  "success": 1
}