POST api/BenutzerEinstellungen

Speichert oder aktualisiert eine Grid-Einstellung.

Request Information

URI Parameters

None.

Body Parameters

Das DTO mit den Einstellungsdaten.

BenutzerEinstellungGrid
NameDescriptionTypeAdditional information
Benutzername

string

None.

Sichtname

string

None.

Json

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Benutzername": "sample string 1",
  "Sichtname": "sample string 2",
  "Json": "sample string 3"
}

application/xml, text/xml

Sample:
<BenutzerEinstellungGrid xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BestaendeWeb.Models">
  <Benutzername>sample string 1</Benutzername>
  <Json>sample string 3</Json>
  <Sichtname>sample string 2</Sichtname>
</BenutzerEinstellungGrid>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Eine Erfolgs- oder Fehlermeldung als Text.

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>