POST api/bstzahlenjahrgang/v1/bstjahrgang

Gibt eine Liste von Mitglieder nach Geschlecht pro Jahrgang für eine Organisation aus

Request Information

URI Parameters

None.

Body Parameters

BstZahlenJahrgangPublicSelect
NameDescriptionTypeAdditional information
OrganisationNummer

integer

Required

FachverbandNummer

integer

Required

ErhebungsJahr

integer

Required

Eingefroren

boolean

Required

Request Formats

application/json, text/json

Sample:
{
  "OrganisationNummer": 1,
  "FachverbandNummer": 2,
  "ErhebungsJahr": 3,
  "Eingefroren": true
}

application/xml, text/xml

Sample:
<BstZahlenJahrgangPublicSelect xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IWeb.IntelliVerband.Bst.Models">
  <Eingefroren>true</Eingefroren>
  <ErhebungsJahr>3</ErhebungsJahr>
  <FachverbandNummer>2</FachverbandNummer>
  <OrganisationNummer>1</OrganisationNummer>
</BstZahlenJahrgangPublicSelect>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Gibt ein BstZahlenJahrgangPublicQueryResult-Objekt zurück, das eine nach Geschlecht und Jahrgang gruppierte Mitgliederstatistik enthält

ApiResponseOfBstZahlenJahrgangPublicQueryResult
NameDescriptionTypeAdditional information
DataResult

BstZahlenJahrgangPublicQueryResult

None.

ValidationResult

ValidationResult

None.

Response Formats

application/json, text/json

Sample:
{
  "DataResult": {
    "Entries": [
      {
        "Jahrgang": 1,
        "AnzahlM": 2,
        "AnzahlW": 3,
        "AnzahlD": 4,
        "AnzahlO": 5
      },
      {
        "Jahrgang": 1,
        "AnzahlM": 2,
        "AnzahlW": 3,
        "AnzahlD": 4,
        "AnzahlO": 5
      }
    ],
    "RecordsTotal": 1,
    "PageSize": 2,
    "PageIndex": 3,
    "SortField": "sample string 4"
  },
  "ValidationResult": {
    "ErrorMsg": "sample string 1",
    "HintMsg": "sample string 2",
    "ErrorFieldNames": [
      "sample string 1",
      "sample string 2"
    ],
    "FieldName": "sample string 3"
  }
}

application/xml

Sample:

Sample not available.

text/xml

Sample:

Sample not available.