curl --request POST \
--url https://cucuniversity.edtools.co/api/resource/Grading%20Scale \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"grading_scale_name": "Escala 1-5",
"description": "Escala numérica de 1 a 5",
"intervals": [
{
"grade_code": "5",
"threshold": 90,
"grade_description": "Excelente"
},
{
"grade_code": "4",
"threshold": 80,
"grade_description": "Bueno"
},
{
"grade_code": "3",
"threshold": 60,
"grade_description": "Aceptable"
},
{
"grade_code": "2",
"threshold": 40,
"grade_description": "Insuficiente"
},
{
"grade_code": "1",
"threshold": 0,
"grade_description": "Deficiente"
}
]
}
'