PUT api/ZeitEintrag/{id}?firmaBenutzername={firmaBenutzername}&benutzername={benutzername}&passwort={passwort}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
firmaBenutzername

string

Required

benutzername

string

Required

passwort

string

Required

id

globally unique identifier

Required

Body Parameters

PutZeitEintragDto
NameDescriptionTypeAdditional information
TätigkeitId

globally unique identifier

None.

Zeit

date

None.

Fehlerhaft

boolean

None.

IsInGeoZone

boolean

None.

IsGelöscht

boolean

None.

IsAbgeholt

boolean

None.

Manuell

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "TätigkeitId": "bd5c903d-9695-4722-aa60-1c3fffe5c1c1",
  "Zeit": "2025-12-06T04:30:27.7613254+01:00",
  "Fehlerhaft": true,
  "IsInGeoZone": true,
  "IsGelöscht": true,
  "IsAbgeholt": true,
  "Manuell": true
}

application/xml, text/xml

Sample:
<PutZeitEintragDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PDZeiterfassungCommonComponents.Dto.Put">
  <Fehlerhaft>true</Fehlerhaft>
  <IsAbgeholt>true</IsAbgeholt>
  <IsGelöscht>true</IsGelöscht>
  <IsInGeoZone>true</IsInGeoZone>
  <Manuell>true</Manuell>
  <TätigkeitId>bd5c903d-9695-4722-aa60-1c3fffe5c1c1</TätigkeitId>
  <Zeit>2025-12-06T04:30:27.7613254+01:00</Zeit>
</PutZeitEintragDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Result
NameDescriptionTypeAdditional information
Success

boolean

None.

Alerts

Collection of Alert

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Alerts": null
}

application/xml, text/xml

Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PDZeiterfassungCommonComponents.Helpers">
  <Alerts i:nil="true" />
  <Success>true</Success>
</Result>