GET race8_basicinfo/{dbName}

Get basic informations for election race for municipal mayors

Request Information

Parameters

NameDescriptionAdditional information
dbName
the name of the database from which data are obtained

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "percentageProcessedPollingStations": 1.0,
  "numberOfVoters": 2,
  "totalVotes": 3,
  "percentageTotalVotes": 4.0,
  "validVotes": 5,
  "percentageValidVotes": 6.0,
  "invalidVotes": 7,
  "percentageInvalidVotes": 8.0,
  "totalPollingStations": 9,
  "processedPollingStations": 10,
  "numberMunicipality": 11,
  "numberCandidates": 12,
  "dataFrom": "2026-09-09T19:01:39.7067984+02:00",
  "numberParty": 14
}

application/xml, text/xml

Sample:
<Race8_BasicInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CIK.WebSite.Model.WebResult.Race8">
  <DataFrom>2026-09-09T19:01:39.7067984+02:00</DataFrom>
  <InvalidVotes>7</InvalidVotes>
  <NumberCandidates>12</NumberCandidates>
  <NumberMunicipality>11</NumberMunicipality>
  <NumberOfVoters>2</NumberOfVoters>
  <NumberParty>14</NumberParty>
  <PercentageInvalidVotes>8</PercentageInvalidVotes>
  <PercentageProcessedPollingStations>1</PercentageProcessedPollingStations>
  <PercentageTotalVotes>4</PercentageTotalVotes>
  <PercentageValidVotes>6</PercentageValidVotes>
  <ProcessedPollingStations>10</ProcessedPollingStations>
  <TotalPollingStations>9</TotalPollingStations>
  <TotalVotes>3</TotalVotes>
  <ValidVotes>5</ValidVotes>
</Race8_BasicInfo>