POST api/Workflow/SetupWorkflowChannelMirror
Request Information
URI Parameters
None.
Body Parameters
BotWorkflowChannelSelection| Name | Description | Type | Additional information |
|---|---|---|---|
| status | boolean |
None. |
|
| clientId | string |
None. |
|
| workflowId | integer |
None. |
|
| channelId | string |
None. |
|
| waList | Collection of channel |
None. |
Request Formats
application/json, text/json
Sample:
{
"status": true,
"clientId": "sample string 2",
"workflowId": 3,
"channelId": "sample string 4",
"waList": [
{
"index": 1,
"id": "sample string 2",
"name": "sample string 3"
},
{
"index": 1,
"id": "sample string 2",
"name": "sample string 3"
}
]
}
application/xml, text/xml
Sample:
<jsonObj.BotWorkflowChannelSelection xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bizbot">
<channelId>sample string 4</channelId>
<clientId>sample string 2</clientId>
<status>true</status>
<waList>
<jsonObj.channel>
<id>sample string 2</id>
<index>1</index>
<name>sample string 3</name>
</jsonObj.channel>
<jsonObj.channel>
<id>sample string 2</id>
<index>1</index>
<name>sample string 3</name>
</jsonObj.channel>
</waList>
<workflowId>3</workflowId>
</jsonObj.BotWorkflowChannelSelection>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |