I'm able to get the final grade for a particular user with:
GET /d2l/api/le/(version)/(orgUnitId)/grades/final/values/(userId)
But I need to apply a grading scheme from the context of this user's final grade to turn it into a letter that's associated with the scheme:
"GradeObjectName": "Final Adjusted Grade",
"GradeObjectType": 8,
"GradeObjectTypeName": null,
"DisplayedGrade": "89 / 100", **Should be 'B+' **
Is there a way to get the transformed numerical value without extracting both the scheme and the final grade calculation and translating the values?
Additionally, is there a way to detect which scheme is applied to a class context?