Tick Homework

Toggle the status of a homework item to 'completed'.

GET
/homeworkticked/{homeworkStatusId}

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

homeworkStatusIdRequiredstring

The ID of the homework.status to mark as completed

Query Parameters

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

Successful response

{
  "data": [
    null
  ],
  "meta": [
    null
  ],
  "success": 1
}