PUT api/CheckInOut/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

CheckInOutDTO
NameDescriptionTypeAdditional information
ID

integer

None.

CustomerVenueID

integer

None.

SystemUserID

integer

None.

CheckInDateTime

date

None.

CheckInLong

string

None.

CheckInLat

string

None.

CheckOutDateTime

date

None.

CheckOutLong

string

None.

CheckOutLat

string

None.

Count

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "CustomerVenueID": 2,
  "SystemUserID": 3,
  "CheckInDateTime": "2025-07-01T12:47:18.3839827+02:00",
  "CheckInLong": "sample string 5",
  "CheckInLat": "sample string 6",
  "CheckOutDateTime": "2025-07-01T12:47:18.3839827+02:00",
  "CheckOutLong": "sample string 8",
  "CheckOutLat": "sample string 9",
  "Count": 10
}

application/xml, text/xml

Sample:
<CheckInOutDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataAccess.DTO">
  <CheckInDateTime>2025-07-01T12:47:18.3839827+02:00</CheckInDateTime>
  <CheckInLat>sample string 6</CheckInLat>
  <CheckInLong>sample string 5</CheckInLong>
  <CheckOutDateTime>2025-07-01T12:47:18.3839827+02:00</CheckOutDateTime>
  <CheckOutLat>sample string 9</CheckOutLat>
  <CheckOutLong>sample string 8</CheckOutLong>
  <Count>10</Count>
  <CustomerVenueID>2</CustomerVenueID>
  <ID>1</ID>
  <SystemUserID>3</SystemUserID>
</CheckInOutDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>