Some API call examples have a JSON body that does not work in Windows. For example,
-d "{"request":"ProcessRun_StartRq","processRunId":"pr-2640"}"
doesn't work in windows (works in Linux) but:
-d "{\"request\":\"ProcessRun_StartRq\",\"processRunId\":\"pr-2640\"}"
works in windows.
Can you either update the JSON bodies in the request examples or give a note about this discrepancy between Windows and Linux .