POST api/Call
Request Information
URI Parameters
None.
Body Parameters
CallRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Number | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Number": "sample string 1"
}
application/xml, text/xml
Sample:
<CallRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VisWebApiDB"> <Number>sample string 1</Number> </CallRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
CallResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Error | boolean |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Error": true,
"Message": "sample string 2"
}
application/xml, text/xml
Sample:
<CallResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VisWebApiDB"> <Error>true</Error> <Message>sample string 2</Message> </CallResponse>