POST api/MultiCalls
Request Information
URI Parameters
None.
Body Parameters
Collection of CallsCallsMFC| Name | Description | Type | Additional information |
|---|---|---|---|
| Problem | string |
None. |
|
| Id | integer |
None. |
|
| IsContract | boolean |
None. |
|
| Caller | string |
None. |
|
| User | integer |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"Problem": "sample string 1",
"Id": 2,
"IsContract": true,
"Caller": "sample string 4",
"User": 5
},
{
"Problem": "sample string 1",
"Id": 2,
"IsContract": true,
"Caller": "sample string 4",
"User": 5
}
]
application/xml, text/xml
Sample:
<ArrayOfCallsCallsMFC xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/It.Aep.HeliosXp.Web.Models">
<CallsCallsMFC>
<Caller>sample string 4</Caller>
<Id>2</Id>
<IsContract>true</IsContract>
<Problem>sample string 1</Problem>
<User>5</User>
</CallsCallsMFC>
<CallsCallsMFC>
<Caller>sample string 4</Caller>
<Id>2</Id>
<IsContract>true</IsContract>
<Problem>sample string 1</Problem>
<User>5</User>
</CallsCallsMFC>
</ArrayOfCallsCallsMFC>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of MultiCallResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| HasError | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"HasError": true
},
{
"Id": 1,
"HasError": true
}
]
application/xml, text/xml
Sample:
<ArrayOfMultiCallResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/It.Aep.HeliosXp.Web.Models">
<MultiCallResponse>
<HasError>true</HasError>
<Id>1</Id>
</MultiCallResponse>
<MultiCallResponse>
<HasError>true</HasError>
<Id>1</Id>
</MultiCallResponse>
</ArrayOfMultiCallResponse>