POST api/ZeitEintrag?firmaBenutzername={firmaBenutzername}&benutzername={benutzername}&passwort={passwort}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| firmaBenutzername | string |
Required |
|
| benutzername | string |
Required |
|
| passwort | string |
Required |
Body Parameters
PostZeitEintragDto| Name | Description | Type | Additional information |
|---|---|---|---|
| TätigkeitId | globally unique identifier |
None. |
|
| Zeit | date |
None. |
|
| Lat | decimal number |
None. |
|
| Lon | decimal number |
None. |
|
| Art | boolean |
None. |
|
| Manuell | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"TätigkeitId": "ec883f8e-6844-4e9b-a46a-26cd2e9308d8",
"Zeit": "2025-12-06T04:28:39.7285254+01:00",
"Lat": 3.1,
"Lon": 4.1,
"Art": true,
"Manuell": true
}
application/xml, text/xml
Sample:
<PostZeitEintragDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PDZeiterfassungCommonComponents.Dto.Post"> <Art>true</Art> <Lat>3.1</Lat> <Lon>4.1</Lon> <Manuell>true</Manuell> <TätigkeitId>ec883f8e-6844-4e9b-a46a-26cd2e9308d8</TätigkeitId> <Zeit>2025-12-06T04:28:39.7285254+01:00</Zeit> </PostZeitEintragDto>
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>