ClassCharts API Docs

List Pupil Fields

Gets the student's pupil fields

GET
/customfields/{studentId}
/customfields/{studentId}

The Authorization access token

Authorization

Authorization
Required
Basic <token>

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

In: header

Path Parameters

studentId
Required
integer

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

Array of custom fields

{
  "data": {
    "note": "string",
    "fields": [
      {
        "id": 0,
        "name": "string",
        "graphic": "string",
        "value": "string"
      }
    ]
  },
  "success": 0
}