SIS_Imports - workflow_state:initializing
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I'm not sure I see this documented anywhere, but there's a short reference to it in batch uploads. However, just trying to do one import into Canvas and the workflow state is 'initializing'. Any ideas what this means and where I can find documentation about this?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Finally found this to work for enrollments.csv --
strAuth - this is the authorization access
string strExecute = "--insecure -F attachment=@" +
@"\\<path_for_this_file>\enrolls.csv " +
" -H " + "\"Authorization: Bearer " + strAuth + "\"" + " \"" +
"https://canvas.park.edu/api/v1/accounts/1/sis_imports.json?import_type=instructure_csv\"";
Process.Start(@"<path_for_this_file>\curl.exe", strExecute);