Hi,
I believe I have WF init via the REST API working, except for setting attributes.
I start the process with a call to get a draft process. That is, a POST of
http://{{cshost}}/{{cshosturi}}/api/v2/draftprocesses
Then I call the draft process again using a PUT:
http://{{cshost}}/{{cshosturi}}/api/v2/draftprocesses/{{draftprocid}}
With the put, I put all my JSON into a body tag (I can't believe we still have to do that). It looks like this:
{"action" : "formUpdate",
"comment":"Testing",
"values": {"WorkflowForm_Title":"Remotely executed WF",
"WorkflowForm_2":"2025-04-02 16:00:00.000", "WorkflowForm_3":"37",
"WorkflowForm_4":"Exception",
"WorkflowForm_5":"21519"}}
Then I can initiate it with another call to the same URL as a PUT with payload
{"action":"Initiate","comment":"WF Remotely started"}
My problem is that on step 2, it returns OK, but in fact, there was an error with one of the attributes so it didn't submit any. WorkflowFOrm_3 is an integer attribute but in CSIDE, it is still being explicitly cast to String, even wrapped in quotes. Str.StringToInteger(37) works, Str.StringToInteger('37') doesn't.
Anyone know how you pass explicitly integer (or date, or user) fields in the draft process payload?
-Hugh Ferguson