SIS_Imports - workflow_state:initializing

Jump to solution
rob_callicotte
Community Contributor

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?

0 Likes
1 Solution

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);

View solution in original post

0 Likes