POST api/MakeCall

Documentation for 'Post'.

Request Information

Parameters

NameDescriptionAdditional information
makeCall
Documentation for 'makeCall'.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "User": {
    "username": "sample string 1",
    "password": "sample string 2"
  },
  "OperatorUsername": "sample string 1",
  "NumberToCall": "sample string 2",
  "UserId": 3
}

application/xml, text/xml

Sample:
<MakeCall xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataAccessLayer.Objects.MakeCall">
  <NumberToCall>sample string 2</NumberToCall>
  <OperatorUsername>sample string 1</OperatorUsername>
  <User>
    <password xmlns="">sample string 2</password>
    <username xmlns="">sample string 1</username>
  </User>
  <UserId>3</UserId>
</MakeCall>

application/x-www-form-urlencoded

Sample:

Sample not available.