GET api/MobileApp/GetSavedCallLogs
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of SavedCallLog| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| CustomerId | integer |
None. |
|
| PhoneNumber | string |
None. |
|
| CallDate | date |
None. |
|
| Direction | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"CustomerId": 2,
"PhoneNumber": "sample string 3",
"CallDate": "2026-06-25T17:04:30.2877035-04:00",
"Direction": "sample string 5"
},
{
"Id": 1,
"CustomerId": 2,
"PhoneNumber": "sample string 3",
"CallDate": "2026-06-25T17:04:30.2877035-04:00",
"Direction": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfSavedCallLog xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Raza.Objects.Business.MobileApp">
<SavedCallLog>
<CallDate>2026-06-25T17:04:30.2877035-04:00</CallDate>
<CustomerId>2</CustomerId>
<Direction>sample string 5</Direction>
<Id>1</Id>
<PhoneNumber>sample string 3</PhoneNumber>
</SavedCallLog>
<SavedCallLog>
<CallDate>2026-06-25T17:04:30.2877035-04:00</CallDate>
<CustomerId>2</CustomerId>
<Direction>sample string 5</Direction>
<Id>1</Id>
<PhoneNumber>sample string 3</PhoneNumber>
</SavedCallLog>
</ArrayOfSavedCallLog>