POST api/Workflows
Request Information
URI Parameters
None.
Body Parameters
Collection of WorkflowsInput| Name | Description | Type | Additional information |
|---|---|---|---|
| WorkflowName | string |
None. |
|
| WorkflowType | integer |
None. |
|
| ExternalIdCustomField | string |
None. |
|
| Value | string |
None. |
|
| Code | string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"WorkflowName": "sample string 1",
"WorkflowType": 2,
"ExternalIdCustomField": "sample string 3",
"Value": "sample string 4",
"Code": "sample string 5"
},
{
"WorkflowName": "sample string 1",
"WorkflowType": 2,
"ExternalIdCustomField": "sample string 3",
"Value": "sample string 4",
"Code": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfWorkflowsInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Captio.Api.Data.Entities.Importacions">
<WorkflowsInput>
<Code>sample string 5</Code>
<ExternalIdCustomField>sample string 3</ExternalIdCustomField>
<Value>sample string 4</Value>
<WorkflowName>sample string 1</WorkflowName>
<WorkflowType>2</WorkflowType>
</WorkflowsInput>
<WorkflowsInput>
<Code>sample string 5</Code>
<ExternalIdCustomField>sample string 3</ExternalIdCustomField>
<Value>sample string 4</Value>
<WorkflowName>sample string 1</WorkflowName>
<WorkflowType>2</WorkflowType>
</WorkflowsInput>
</ArrayOfWorkflowsInput>
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. |