GET api/Logbook/{ID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
ID

integer

Required

Body Parameters

None.

Response Information

Resource Description

LogbookEntry
NameDescriptionTypeAdditional 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": "2024-10-05T14:20:50.6947856+02:00",
  "Place": "sample string 4",
  "KM": 5,
  "Changed": "2024-10-05T14:20:50.6947856+02: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>2024-10-05T14:20:50.6947856+02:00</Changed>
  <DateTime>2024-10-05T14:20:50.6947856+02:00</DateTime>
  <Deleted>true</Deleted>
  <ID>1</ID>
  <KM>5</KM>
  <Place>sample string 4</Place>
  <Type>Departure</Type>
  <UserID>2</UserID>
</LogbookEntry>