POST api/Integrations/SaveIntegration
Request Information
URI Parameters
None.
Body Parameters
Integration| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| Descr | string |
None. |
|
| Customer | string |
None. |
|
| Integrator | integer |
None. |
|
| ColumnName | string |
None. |
|
| SortDirection | string |
None. |
|
| IntegratorTitle | string |
None. |
|
| IsSuccess | boolean |
None. |
|
| Message | string |
None. |
|
| Value | Object |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"Descr": "sample string 2",
"Customer": "sample string 3",
"Integrator": 1,
"ColumnName": "sample string 4",
"SortDirection": "sample string 5",
"IntegratorTitle": "sample string 6",
"IsSuccess": true,
"Message": "sample string 8",
"Value": {}
}
application/xml, text/xml
Sample:
<Integration xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Domain"> <IsSuccess>true</IsSuccess> <Message>sample string 8</Message> <Value /> <ColumnName>sample string 4</ColumnName> <Customer>sample string 3</Customer> <Descr>sample string 2</Descr> <ID>1</ID> <Integrator>1</Integrator> <IntegratorTitle>sample string 6</IntegratorTitle> <SortDirection>sample string 5</SortDirection> </Integration>
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. |