GET api/DataTransferLogs?fromLine={fromLine}&toLine={toLine}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| fromLine | integer |
Required |
|
| toLine | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of DataTransferLogViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| ObjectType | string |
None. |
|
| Request | string |
None. |
|
| Response | string |
None. |
|
| Status | string |
None. |
|
| CreatedDate | date |
None. |
|
| ReferenceId | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"ObjectType": "sample string 2",
"Request": "sample string 3",
"Response": "sample string 4",
"Status": "sample string 5",
"CreatedDate": "2025-12-13T23:24:47.1436648+00:00",
"ReferenceId": "sample string 7"
},
{
"Id": 1,
"ObjectType": "sample string 2",
"Request": "sample string 3",
"Response": "sample string 4",
"Status": "sample string 5",
"CreatedDate": "2025-12-13T23:24:47.1436648+00:00",
"ReferenceId": "sample string 7"
}
]
application/xml, text/xml
Sample:
<ArrayOfDataTransferLogViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TripPlannerAPI.Models.DTO">
<DataTransferLogViewModel>
<CreatedDate>2025-12-13T23:24:47.1436648+00:00</CreatedDate>
<Id>1</Id>
<ObjectType>sample string 2</ObjectType>
<ReferenceId>sample string 7</ReferenceId>
<Request>sample string 3</Request>
<Response>sample string 4</Response>
<Status>sample string 5</Status>
</DataTransferLogViewModel>
<DataTransferLogViewModel>
<CreatedDate>2025-12-13T23:24:47.1436648+00:00</CreatedDate>
<Id>1</Id>
<ObjectType>sample string 2</ObjectType>
<ReferenceId>sample string 7</ReferenceId>
<Request>sample string 3</Request>
<Response>sample string 4</Response>
<Status>sample string 5</Status>
</DataTransferLogViewModel>
</ArrayOfDataTransferLogViewModel>