PUT api/Mitarbeiter/{id}?benutzername={benutzername}&passwort={passwort}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
benutzername

string

Required

passwort

string

Required

id

globally unique identifier

Required

Body Parameters

PutMitarbeiterDto
NameDescriptionTypeAdditional information
Benutzername

string

None.

Vorname

string

None.

Nachname

string

None.

FremdId

string

None.

UserRechteId

globally unique identifier

None.

IsGelöscht

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "Benutzername": "sample string 1",
  "Vorname": "sample string 2",
  "Nachname": "sample string 3",
  "FremdId": "sample string 4",
  "UserRechteId": "dbe13f5f-17ef-448f-a1ca-57cff4c8b524",
  "IsGelöscht": true
}

application/xml, text/xml

Sample:
<PutMitarbeiterDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PDZeiterfassungCommonComponents.Dto.Put">
  <Benutzername>sample string 1</Benutzername>
  <FremdId>sample string 4</FremdId>
  <IsGelöscht>true</IsGelöscht>
  <Nachname>sample string 3</Nachname>
  <UserRechteId>dbe13f5f-17ef-448f-a1ca-57cff4c8b524</UserRechteId>
  <Vorname>sample string 2</Vorname>
</PutMitarbeiterDto>

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>