ClassCharts API Docs

Get On Report Card Summary Comment

Get on report card summary comment by date

GET
/getpupilreportcardsummarycomment/{id}
/getpupilreportcardsummarycomment/{id}

The Authorization access token

Authorization

Authorization
Required
Basic <token>

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

In: header

Query Parameters

pupil_id
Required
integer

date
Required
string

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

Path Parameters

id
Required
integer

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

Successful response

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