ClassCharts API Docs

List Academic Reports

Get list of academic reports

GET
/getacademicreports
/getacademicreports

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

studentId
Required
integer

curl -X GET "https://www.classcharts.com/apiv2student/getacademicreports?studentId=0" \
  -H "Authorization: Basic <token>"

Successful response

{
  "data": [
    {
      "id": 0,
      "name": "string",
      "start_date": "string",
      "end_date": "string"
    }
  ],
  "meta": [],
  "success": 0
}