POST api/Call/CloudCall

Request Information

URI Parameters

None.

Body Parameters

CallParams
NameDescriptionTypeAdditional information
callerNbr

string

None.

calleeNbr

string

None.

Uuid

string

None.

Request Formats

application/json, text/json

Sample:
{
  "callerNbr": "sample string 1",
  "calleeNbr": "sample string 2",
  "Uuid": "sample string 3"
}

application/xml, text/xml

Sample:
<CallParams xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Umer.WebApi.Model.Base">
  <Uuid>sample string 3</Uuid>
  <calleeNbr>sample string 2</calleeNbr>
  <callerNbr>sample string 1</callerNbr>
</CallParams>

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 'CallParams'.

Response Information

Resource Description

ServerResult
NameDescriptionTypeAdditional information
success

boolean

None.

api_code

string

None.

api_message

string

None.

api_data

Object

None.

type

string

None.

encrypted

boolean

None.

code

string

None.

Response Formats

application/json, text/json

Sample:
{
  "api_code": "sample string 1",
  "api_message": "sample string 2",
  "api_data": {},
  "type": "sample string 4",
  "encrypted": true,
  "code": "sample string 6",
  "success": false
}