GET api/GetDDDataForWorkflowProcessDetails/{isRule}/{processId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
isRule | boolean |
Required |
|
processId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
WorkProcessDefaultDropdownsDataName | Description | Type | Additional information |
---|---|---|---|
Workflow | Collection of WorkFlowDD |
None. |
|
Rules | Collection of RulesDD |
None. |
|
Notifications | Collection of NotificationsDD |
None. |
Response Formats
application/json, text/json
Sample:
{ "Workflow": [ { "WorkflowId": 1, "Name": "sample string 2" }, { "WorkflowId": 1, "Name": "sample string 2" } ], "Rules": [ { "BusinessRuleId": 1, "Name": "sample string 2" }, { "BusinessRuleId": 1, "Name": "sample string 2" } ], "Notifications": [ { "NotificationId": 1, "Name": "sample string 2" }, { "NotificationId": 1, "Name": "sample string 2" } ] }
application/xml, text/xml
Sample:
<WorkProcessDefaultDropdownsData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Goaa.iPro.Data.Admin.CustomClasses"> <Notifications> <NotificationsDD> <Name>sample string 2</Name> <NotificationId>1</NotificationId> </NotificationsDD> <NotificationsDD> <Name>sample string 2</Name> <NotificationId>1</NotificationId> </NotificationsDD> </Notifications> <Rules> <RulesDD> <BusinessRuleId>1</BusinessRuleId> <Name>sample string 2</Name> </RulesDD> <RulesDD> <BusinessRuleId>1</BusinessRuleId> <Name>sample string 2</Name> </RulesDD> </Rules> <Workflow> <WorkFlowDD> <Name>sample string 2</Name> <WorkflowId>1</WorkflowId> </WorkFlowDD> <WorkFlowDD> <Name>sample string 2</Name> <WorkflowId>1</WorkflowId> </WorkFlowDD> </Workflow> </WorkProcessDefaultDropdownsData>