List Pupil Fields

Gets the student's pupil fields

GET
/customfields/{studentId}

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

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

Array of custom fields

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