GET race9_basicinfo/{dbName}
Get basic informations for election race for municipal councilors/municipal assembly
Request Information
Parameters
| Name | Description | Additional 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:
{
"numberOfVoters": 1,
"totalVotes": 2,
"percentageTotalVotes": 3.0,
"validVotes": 4,
"percentageValidVotes": 5.0,
"invalidVotes": 6,
"percentageInvalidVotes": 7.0,
"totalPollingStations": 8,
"processedPollingStations": 9,
"percentageProcessedPollingStations": 10.0,
"numberMunicipality": 11,
"numberCandidates": 12,
"numberParty": 13,
"dataFrom": "2026-09-09T19:01:41.1864697+02:00"
}
application/xml, text/xml
Sample:
<Race9_BasicInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CIK.WebSite.Model.WebResult.Race9"> <DataFrom>2026-09-09T19:01:41.1864697+02:00</DataFrom> <InvalidVotes>6</InvalidVotes> <NumberCandidates>12</NumberCandidates> <NumberMunicipality>11</NumberMunicipality> <NumberOfVoters>1</NumberOfVoters> <NumberParty>13</NumberParty> <PercentageInvalidVotes>7</PercentageInvalidVotes> <PercentageProcessedPollingStations>10</PercentageProcessedPollingStations> <PercentageTotalVotes>3</PercentageTotalVotes> <PercentageValidVotes>5</PercentageValidVotes> <ProcessedPollingStations>9</ProcessedPollingStations> <TotalPollingStations>8</TotalPollingStations> <TotalVotes>2</TotalVotes> <ValidVotes>4</ValidVotes> </Race9_BasicInfo>