POST api/sazwettbewerbgruppe/preparenew

Request Information

URI Parameters

None.

Body Parameters

Collection of KeyValue
NameDescriptionTypeAdditional information
Id

integer

Required

Value

string

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Value": "sample string 2"
  },
  {
    "Id": 1,
    "Value": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfKeyValue xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.App.Models">
  <KeyValue>
    <Id>1</Id>
    <Value>sample string 2</Value>
  </KeyValue>
  <KeyValue>
    <Id>1</Id>
    <Value>sample string 2</Value>
  </KeyValue>
</ArrayOfKeyValue>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

SazWettbewerbGruppe
NameDescriptionTypeAdditional information
Id

integer

Required

RowGuid

globally unique identifier

Required

WettbewerbArtId

integer

Required

Bezeichnung

string

None.

AnzahlMin

integer

Required

AnzahlMax

integer

Required

Sichtbar

boolean

Required

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "RowGuid": "b89bfc1b-3600-4c2d-8d08-fec71de15414",
  "WettbewerbArtId": 3,
  "Bezeichnung": "sample string 4",
  "AnzahlMin": 5,
  "AnzahlMax": 6,
  "Sichtbar": true
}

application/xml, text/xml

Sample:
<SazWettbewerbGruppe xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.IntelliVerband.Saz.Models">
  <AnzahlMax>6</AnzahlMax>
  <AnzahlMin>5</AnzahlMin>
  <Bezeichnung>sample string 4</Bezeichnung>
  <Id>1</Id>
  <RowGuid>b89bfc1b-3600-4c2d-8d08-fec71de15414</RowGuid>
  <Sichtbar>true</Sichtbar>
  <WettbewerbArtId>3</WettbewerbArtId>
</SazWettbewerbGruppe>