List On Report Cards

Get list of on report cards

POST
/getpupilreportcards

Authorization

Authorization<token>

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

In: header

Query Parameters

pupil_idRequiredinteger
curl -X POST "https://www.classcharts.com/apiv2student/getpupilreportcards?pupil_id=0" \
  -H "Authorization: <token>"

Successful response

{
  "data": [
    {
      "id": 0,
      "start_date": "string",
      "end_date": "string",
      "reason": "string",
      "description": "string"
    }
  ],
  "meta": [],
  "success": true
}