GET api/Logbook/{ID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
LogbookEntry| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| UserID | integer |
None. |
|
| Type | LogbookEntryType |
None. |
|
| DateTime | date |
None. |
|
| Place | string |
None. |
|
| KM | integer |
None. |
|
| Changed | date |
None. |
|
| Deleted | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"ID": 1,
"UserID": 2,
"Type": 1,
"DateTime": "2025-12-06T09:24:59.4228579+01:00",
"Place": "sample string 4",
"KM": 5,
"Changed": "2025-12-06T09:24:59.4228579+01:00",
"Deleted": true
}
application/xml, text/xml
Sample:
<LogbookEntry xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Multitool.Shared.Models"> <Changed>2025-12-06T09:24:59.4228579+01:00</Changed> <DateTime>2025-12-06T09:24:59.4228579+01:00</DateTime> <Deleted>true</Deleted> <ID>1</ID> <KM>5</KM> <Place>sample string 4</Place> <Type>Departure</Type> <UserID>2</UserID> </LogbookEntry>