Postman will let you test/simulate your API(s) and it is very similar to what I mentioned - Swagger UiPath (web based)
Some detailed steps for triggering a process would involve…
- Authenticating your orchestrator (POST method)
Body includes
“{”+“”“tenancyName”“”+“:”+ “”“yourTenant”“”+“,”+“”“usernameOrEmailAddress”“”+“:”+ “”“userID”“”+“,”+“”“password”“”+“:”+ “”“PW”“”+“}”
You get Result and Connection Status
List of connection status codes - List of HTTP status codes - Wikipedia
Result is string
- You need to use deserialize json activity to de-serialize the string
- You need to get release key (Similar to step 1 with GET method)
The output will be a string. - Using the release you need to do another HTTP POST
The body will be something similar to this
“{”+
“”“startInfo”“”+“:”+" “+”{“+
“”“ReleaseKey””“+”:“+” “+”“”“+Release_Key+”“”“+”,“+
“”“RobotIds””“+”:“+” “+”[“+
Bot_ID+
" ]”+“,”+
“}”+
“}”
Finally these are some reference posts:
Hope this helps. Good luck