PUT api/ZeitEintrag/{id}?firmaBenutzername={firmaBenutzername}&benutzername={benutzername}&passwort={passwort}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| firmaBenutzername | string |
Required |
|
| benutzername | string |
Required |
|
| passwort | string |
Required |
|
| id | globally unique identifier |
Required |
Body Parameters
PutZeitEintragDto| Name | Description | Type | Additional 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": "8dbf8d20-5a8a-448e-bcb0-da99fd52a3ca",
"Zeit": "2026-03-19T06:37:34.1054457+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>8dbf8d20-5a8a-448e-bcb0-da99fd52a3ca</TätigkeitId> <Zeit>2026-03-19T06:37:34.1054457+01:00</Zeit> </PutZeitEintragDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Result| Name | Description | Type | Additional 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>