Skip to main content
PUT
/
employees
/
{employee}
/
working_time_comment
Kommentar speichern
curl --request PUT \
  --url https://{tenant}.stamp.eu/rest/employees/{employee}/working_time_comment \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "date": "2023-12-25",
  "comment": "<string>"
}
'
{
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

employee
string<uuid>
required

Mitarbeiter-ID (UUID)

Body

application/json
date
string<date>
required
comment
string
required
Maximum string length: 1000

Response

Kommentar gespeichert

message
string