get_quiz_grade
Retrieve a student's grade for a specific quiz from the Moodle platform using student and quiz identifiers.
Instructions
Obtiene la calificación de un estudiante en un quiz específico
Input Schema
Name | Required | Description | Default |
---|---|---|---|
quizId | Yes | ID del quiz | |
studentId | Yes | ID del estudiante |
Input Schema (JSON Schema)
{
"properties": {
"quizId": {
"description": "ID del quiz",
"type": "number"
},
"studentId": {
"description": "ID del estudiante",
"type": "number"
}
},
"required": [
"studentId",
"quizId"
],
"type": "object"
}