POST api/MobileApp/SaveCallLog
Request Information
URI Parameters
None.
Body Parameters
SavedCallLog| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| CustomerId | integer |
None. |
|
| PhoneNumber | string |
None. |
|
| CallDate | date |
None. |
|
| Direction | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"CustomerId": 2,
"PhoneNumber": "sample string 3",
"CallDate": "2026-06-25T22:10:44.5521077-04:00",
"Direction": "sample string 5"
}
application/xml, text/xml
Sample:
<SavedCallLog xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Raza.Objects.Business.MobileApp"> <CallDate>2026-06-25T22:10:44.5521077-04:00</CallDate> <CustomerId>2</CustomerId> <Direction>sample string 5</Direction> <Id>1</Id> <PhoneNumber>sample string 3</PhoneNumber> </SavedCallLog>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.