Simple Workflow Owner
Creates a link to the requests created by the current user of a workflow.
Displays the status of the request as well as its results.
Following Information needed:
var server = @"serveraddress";
string orgGuid = "OrgGuid";
var serverUrl = $"https://{server}/DocuWare/Platform/WebClient";
DWIntegrationInfo dwInfo = new DWIntegrationInfo(serverUrl, orgGuid, false);
var integrationType = IntegrationType.SimpleWorkflowOwner;
var dwParam = new DWIntegrationUrlParameters(integrationType)
{
WorkflowInstanceId = Guid.Parse("00000000-0000-0000-0000-000000000000"),
Culture = new CultureInfo("en-En")
};
var dwUrl = new DWIntegrationUrl(dwInfo, dwParam);
var url = dwUrl.Url;
//Result https://serveraddress:443/DocuWare/Platform/WebClient/ORGID/Integration?culture=en-EN&p=SWO&wiid=00000000-0000-0000-0000-000000000000