GET api/workflow/GetByMasterWorkflowID?masterWorkflowID={masterWorkflowID}&showInactive={showInactive}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
masterWorkflowID | integer |
Required |
|
showInactive | boolean |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of WorkflowForListName | Description | Type | Additional information |
---|---|---|---|
WorkflowID | integer |
None. |
|
Workflow | string |
None. |
|
WorkflowDescription | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "WorkflowID": 1, "Workflow": "sample string 2", "WorkflowDescription": "sample string 3" }, { "WorkflowID": 1, "Workflow": "sample string 2", "WorkflowDescription": "sample string 3" } ]
application/xml, text/xml
Sample:
<ArrayOfWorkflowForList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Debtrak.BusinessObjects.Models.Workflow"> <WorkflowForList> <Workflow>sample string 2</Workflow> <WorkflowDescription>sample string 3</WorkflowDescription> <WorkflowID>1</WorkflowID> </WorkflowForList> <WorkflowForList> <Workflow>sample string 2</Workflow> <WorkflowDescription>sample string 3</WorkflowDescription> <WorkflowID>1</WorkflowID> </WorkflowForList> </ArrayOfWorkflowForList>