Creating workflows
Get available processes
- Get all process definitions to a specific case:
http://demo2.connectzone.dk/Process/Process.svc/Definitions/{REGISTER}/{SYSTEMKEY}?tags={TAGS}
KEY is the key of the specific case.
Get information for starting a process
- Get the template (JSON object) of the process I want to start.
- To find
Guid(definition ID), see Get available processes.
http://demo2.connectzone.dk/Process/Process.svc/Definitions({DEFINITIONID})/StartupInfo
Get a form
- Use
GETto start a process on the current case.
The JSON object from Get information for starting a process is filled in and sent back using POST on the case which has the matching key (KEY).
http://demo2.connectzone.dk/Process/Process.svc/Definitions({DEFINITIONID})/Form?assetRoot={ASSETROOT}&culture={CULTURE}
Start a process
- Use POST to start a process.
http://demo2.connectzone.dk/Process/Process.svc/Processes/{REGISTER}/{SYSTEMKEY}