Get On Report Card Summary Comment

Get on report card summary comment by date

GET
/getpupilreportcardsummarycomment/{id}

Authorization

Authorization<token>

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

In: header

Path Parameters

idRequiredinteger

Query Parameters

pupil_idRequiredinteger
dateRequiredstring

The date of the summary comment (format: YYYY-MM-DD)

curl -X GET "https://www.classcharts.com/apiv2student/getpupilreportcardsummarycomment/0?pupil_id=0&date=string" \
  -H "Authorization: <token>"

Successful response

{
  "data": [
    {
      "id": 0,
      "report_card_id": 0,
      "text": "string",
      "teacher_name": "string",
      "date": "string"
    }
  ],
  "success": true
}