* http://local.openedx.io:8000/api/ccx_coach/v2/courses/{ccxCourseId}/grading_policy GET send current policy as json response, in the same format we used for this endpoint http://local.openedx.io:8000/api/instructor/v2/courses/{courseId}/grading-config * http://local.openedx.io:8000/api/ccx_coach/v2/courses/{ccxCourseId}/grading_policy PUT Currently every time a change is made on a grading policy we made a POST to: http://local.openedx.io:8000/courses/{ccxCourseId}/ccx_set_grading_policy so we will retrieve same logic but use a PUT instead and this will be the payload: Payload: { policy: object }
http://local.openedx.io:8000/api/ccx_coach/v2/courses/{ccxCourseId}/grading_policy
GET
send current policy as json response, in the same format we used for this endpoint http://local.openedx.io:8000/api/instructor/v2/courses/{courseId}/grading-config
http://local.openedx.io:8000/api/ccx_coach/v2/courses/{ccxCourseId}/grading_policy
PUT
Currently every time a change is made on a grading policy we made a POST to:
http://local.openedx.io:8000/courses/{ccxCourseId}/ccx_set_grading_policy
so we will retrieve same logic but use a PUT instead and this will be the payload:
Payload:
{
policy: object
}