POST api/bewadresse/getorgidsfromvgorkreis

Request Information

URI Parameters

None.

Body Parameters

GetOrgIdsFromVgOrKreisRequest
NameDescriptionTypeAdditional information
VerteilergruppenIds

Collection of integer

None.

SkIdVon

integer

Required

SkIdBis

integer

Required

Aktiv

boolean

None.

MitgliedstypId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "VerteilergruppenIds": [
    1,
    2
  ],
  "SkIdVon": 1,
  "SkIdBis": 2,
  "Aktiv": true,
  "MitgliedstypId": 1
}

application/xml, text/xml

Sample:
<GetOrgIdsFromVgOrKreisRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.IntelliVerband.Bew.Models">
  <Aktiv>true</Aktiv>
  <MitgliedstypId>1</MitgliedstypId>
  <SkIdBis>2</SkIdBis>
  <SkIdVon>1</SkIdVon>
  <VerteilergruppenIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </VerteilergruppenIds>
</GetOrgIdsFromVgOrKreisRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of integer

Response Formats

application/json, text/json

Sample:
[
  1,
  2
]

application/xml, text/xml

Sample:
<ArrayOfint xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <int>1</int>
  <int>2</int>
</ArrayOfint>