curl --request POST \
--url https://api.example.com/api/v1/school/pass-marks/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"o_level": 50,
"a_level": 50
}
'{}Set pass mark for a subject and form
curl --request POST \
--url https://api.example.com/api/v1/school/pass-marks/ \
--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.