POST clients/recordMissedCall

Request Information

URI Parameters

None.

Body Parameters

CallDeclineRequest
NameDescriptionTypeAdditional information
CallId

integer

None.

Reason

string

None.

CustId

integer

None.

PhoneNumber

string

None.

CallLegId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "CallId": 1,
  "Reason": "sample string 2",
  "CustId": 3,
  "PhoneNumber": "sample string 4",
  "CallLegId": 5
}

text/html

Sample:
{"CallId":1,"Reason":"sample string 2","CustId":3,"PhoneNumber":"sample string 4","CallLegId":5}

application/xml, text/xml

Sample:
<CallDeclineRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ListenerOnline.BusinessEntities.Clients">
  <CallId>1</CallId>
  <CallLegId>5</CallLegId>
  <CustId>3</CustId>
  <PhoneNumber>sample string 4</PhoneNumber>
  <Reason>sample string 2</Reason>
</CallDeclineRequest>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'CallDeclineRequest'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, text/html, application/xml, text/xml

Sample:

Sample not available.