POST api/CallRevu/CallCustomer
Request Information
URI Parameters
None.
Body Parameters
CallCustomer| Name | Description | Type | Additional information |
|---|---|---|---|
| EmployeePhoneNumber | string |
None. |
|
| EmployeeExtension | string |
None. |
|
| CustomerPhoneNumber | string |
None. |
|
| WaitConf | boolean |
None. |
|
| AAContactId | string |
None. |
|
| AAEmployeeId | string |
None. |
|
| AADealerId | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"EmployeePhoneNumber": "sample string 1",
"EmployeeExtension": "sample string 2",
"CustomerPhoneNumber": "sample string 3",
"WaitConf": true,
"AAContactId": "sample string 5",
"AAEmployeeId": "sample string 6",
"AADealerId": "sample string 7"
}
application/xml, text/xml
Sample:
<CallCustomer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MDL_Import.Models"> <AAContactId>sample string 5</AAContactId> <AADealerId>sample string 7</AADealerId> <AAEmployeeId>sample string 6</AAEmployeeId> <CustomerPhoneNumber>sample string 3</CustomerPhoneNumber> <EmployeeExtension>sample string 2</EmployeeExtension> <EmployeePhoneNumber>sample string 1</EmployeePhoneNumber> <WaitConf>true</WaitConf> </CallCustomer>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of CallCustomerResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Successful | string |
None. |
|
| TrunkId | integer |
None. |
|
| ErrorCode | string |
None. |
|
| ErrorMessage | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Successful": "sample string 1",
"TrunkId": 2,
"ErrorCode": "sample string 3",
"ErrorMessage": "sample string 4"
},
{
"Successful": "sample string 1",
"TrunkId": 2,
"ErrorCode": "sample string 3",
"ErrorMessage": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfCallCustomerResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MDL_Import.Models">
<CallCustomerResponse>
<ErrorCode>sample string 3</ErrorCode>
<ErrorMessage>sample string 4</ErrorMessage>
<Successful>sample string 1</Successful>
<TrunkId>2</TrunkId>
</CallCustomerResponse>
<CallCustomerResponse>
<ErrorCode>sample string 3</ErrorCode>
<ErrorMessage>sample string 4</ErrorMessage>
<Successful>sample string 1</Successful>
<TrunkId>2</TrunkId>
</CallCustomerResponse>
</ArrayOfCallCustomerResponse>