I'm having a little bit of difficulty working with Workflow Manager from the Pro .NET SDK. I would really like to be able to create and continue jobs from my custom add-in, but what I have right now is not working. I'm wondering if I am misunderstanding the meaning of certain functions.
Here's a snippet of code that I've been using, which I believe is in the documentation, that I thought would allow me to continue a Job from the current step:
var jobManager = WorkflowClientModule.JobsManager;
jobManager.RunSteps(jobId);
I am connected to Workflow Manager when I run this inside a button command, I have a valid job ID, but when I run it... nothing. No errors or any response from Pro itself. What I expected was something similar to clicking the "Resume" button here in the UI in Pro:

Is there some other way to get the same functionality? Thank you in advance. 🙂
Edit: Additionally, is it possible to create a job from the SDK?