curl --request POST \
--url https://cucuniversity.edtools.co/api/method/education.education.doctype.assessment_result_tool.assessment_result_tool.submit_assessment_results \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"assessment_plan": "EDU-ASP-2025-00001",
"students": [
{
"student": "EDU-STU-2025-00001",
"scores": {
"Theory": 85,
"Practical": 90
}
},
{
"student": "EDU-STU-2025-00002",
"scores": {
"Theory": 78,
"Practical": 82
}
}
]
}
'