Get On Report Card Target

Get on report card target

GET
/getpupilreportcardtarget/{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 target period (format: YYYY-MM-DD)

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

Successful response

{
  "data": {
    "target": {
      "id": 0,
      "pupil_report_card": {
        "id": 0,
        "required_teacher_action": "string"
      },
      "description": "string"
    },
    "periods": [
      {
        "id": 0,
        "mark_id": 0,
        "met": "string",
        "label": "string",
        "comment_description": "string",
        "comment_created": "string",
        "mark_ranking": "string",
        "teacher_name": "string"
      }
    ]
  },
  "success": true
}