I'm trying to download the actual file the students upload via the API. I have a list of all the submissions I want to download using the URL
urlAPI_root = url_root+'/api/v1/courses/' + str(assignment.crsID) + '/assignments/' + str(assignment.id) + '/submissions/'+str(submission['user_id'])
I receive the information I need to know about the grade, time submitted and such. However, it informs me that the submission_type is online_upload but I cannot access the file that was uploaded. Any ideas?