POST api/DripWorkflow/CreateDripWorkflowStep
Request Information
URI Parameters
None.
Body Parameters
SaveDripWorkflowStepVm| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| WorkflowId | integer |
None. |
|
| StepOrder | integer |
None. |
|
| ChannelType | string |
None. |
|
| TemplateId | integer |
None. |
|
| Delay | integer |
None. |
|
| DelayType | string |
None. |
|
| DayTime | string |
None. |
|
| ConditionOn | string |
None. |
|
| SkipOn | string |
None. |
|
| IsInstant | boolean |
None. |
|
| IsActive | boolean |
None. |
|
| IsDeleted | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"WorkflowId": 2,
"StepOrder": 1,
"ChannelType": "sample string 3",
"TemplateId": 1,
"Delay": 4,
"DelayType": "sample string 5",
"DayTime": "sample string 6",
"ConditionOn": "sample string 7",
"SkipOn": "sample string 8",
"IsInstant": true,
"IsActive": true,
"IsDeleted": true
}
application/xml, text/xml
Sample:
<SaveDripWorkflowStepVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BrokerServer.Models.LeadModels"> <ChannelType>sample string 3</ChannelType> <ConditionOn>sample string 7</ConditionOn> <DayTime>sample string 6</DayTime> <Delay>4</Delay> <DelayType>sample string 5</DelayType> <Id>1</Id> <IsActive>true</IsActive> <IsDeleted>true</IsDeleted> <IsInstant>true</IsInstant> <SkipOn>sample string 8</SkipOn> <StepOrder>1</StepOrder> <TemplateId>1</TemplateId> <WorkflowId>2</WorkflowId> </SaveDripWorkflowStepVm>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.