POST api/v1/cloudphone/log-receiptcall
Request Information
URI Parameters
None.
Body Parameters
LogReceiptCallModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ApiKey | string |
None. |
|
| CallNumber | string |
None. |
|
| CallName | string |
None. |
|
| ReceiptNumber | string |
None. |
|
| Key | string |
None. |
|
| Status | string |
None. |
|
| Message | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ApiKey": "sample string 1",
"CallNumber": "sample string 2",
"CallName": "sample string 3",
"ReceiptNumber": "sample string 4",
"Key": "sample string 5",
"Status": "sample string 6",
"Message": "sample string 7"
}
application/xml, text/xml
Sample:
<LogReceiptCallModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CloudPhoneAPI.Models"> <ApiKey>sample string 1</ApiKey> <CallName>sample string 3</CallName> <CallNumber>sample string 2</CallNumber> <Key>sample string 5</Key> <Message>sample string 7</Message> <ReceiptNumber>sample string 4</ReceiptNumber> <Status>sample string 6</Status> </LogReceiptCallModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | boolean |
None. |
|
| Message | string |
None. |
|
| Data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": true,
"Message": "sample string 2",
"Data": {}
}
application/xml, text/xml
Sample:
<ResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CloudPhoneAPI.Models"> <Data /> <Message>sample string 2</Message> <Status>true</Status> </ResponseModel>