POST api/vergebuehr/update
Request Information
URI Parameters
None.
Body Parameters
VerGebuehr| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| RowGuid | globally unique identifier |
Required |
|
| Bezeichnung | string |
None. |
|
| MandantReWe | integer |
Required |
|
| Artikel | string |
None. |
|
| Kategorie | integer |
Required |
|
| Sichtbar | boolean |
Required |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"RowGuid": "ace74702-e651-4a82-9ac3-e6ef49fc4e5c",
"Bezeichnung": "sample string 3",
"MandantReWe": 4,
"Artikel": "sample string 5",
"Kategorie": 6,
"Sichtbar": true
}
application/xml, text/xml
Sample:
<VerGebuehr xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.IntelliVerband.Ver.Models"> <Artikel>sample string 5</Artikel> <Bezeichnung>sample string 3</Bezeichnung> <Id>1</Id> <Kategorie>6</Kategorie> <MandantReWe>4</MandantReWe> <RowGuid>ace74702-e651-4a82-9ac3-e6ef49fc4e5c</RowGuid> <Sichtbar>true</Sichtbar> </VerGebuehr>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
VerGebuehrDisplay| Name | Description | Type | Additional information |
|---|---|---|---|
| KategorieDisplay | string |
None. |
|
| Id | integer |
Required |
|
| RowGuid | globally unique identifier |
Required |
|
| Bezeichnung | string |
None. |
|
| MandantReWe | integer |
Required |
|
| Artikel | string |
None. |
|
| Kategorie | integer |
Required |
|
| Sichtbar | boolean |
Required |
Response Formats
application/json, text/json
Sample:
{
"KategorieDisplay": "sample string 1",
"Id": 2,
"RowGuid": "2aacf79c-e526-46d5-a75b-158e8d1dbff4",
"Bezeichnung": "sample string 4",
"MandantReWe": 5,
"Artikel": "sample string 6",
"Kategorie": 7,
"Sichtbar": true
}
application/xml, text/xml
Sample:
<VerGebuehrDisplay xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.IntelliVerband.Ver.Models"> <Artikel>sample string 6</Artikel> <Bezeichnung>sample string 4</Bezeichnung> <Id>2</Id> <Kategorie>7</Kategorie> <MandantReWe>5</MandantReWe> <RowGuid>2aacf79c-e526-46d5-a75b-158e8d1dbff4</RowGuid> <Sichtbar>true</Sichtbar> <KategorieDisplay>sample string 1</KategorieDisplay> </VerGebuehrDisplay>