curl --request PUT \
--url https://api.example.com/api/v1/school/pass-marks/{id}/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"o_level": 50,
"a_level": 50
}
'{}Update pass mark configuration
curl --request PUT \
--url https://api.example.com/api/v1/school/pass-marks/{id}/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"o_level": 50,
"a_level": 50
}
'{}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
A UUID string identifying this pass mark.