GET race9_electoralunitbasicinfo/{dbName}/{electoralUnitId}

Get basic informations for selected electitoral unit for election race for municipal councilors/municipal assembly

Request Information

Parameters

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

Define this parameter in the request URI.

electoralUnitId
the ID of the electoral unit

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "numberOfVoters": 1,
  "totalVotes": 2,
  "totalNoVotes": 3,
  "validVotes": 4,
  "regularVotes": 1,
  "postOfficeVotes": 1,
  "absenceAndMobileTeamVotes": 1,
  "confirmedVotes": 1,
  "totalInvalidVotes": 5,
  "invalidBlankBallots": 6,
  "invalidOthersBallots": 7,
  "totalPollingStations": 8,
  "processedPollingStations": 9,
  "percentageProcessedPollingStations": 10.0,
  "totalMandates": 11,
  "regularMandates": 12,
  "nationalMinoritiesMandates": 13,
  "processedRegularVotes": 14.0,
  "processedPostOfficeVotes": 15.0,
  "processedAbsenceAndMobileTeamVotes": 16.0,
  "processedConfirmedVotes": 17.0,
  "percentageTotalVotes": 18.0,
  "percentageTotalNoVotes": 19.0,
  "processedValidVotes": 20.0,
  "processedInvalidBlankBallots": 21.0,
  "processedInvalidOthersBallots": 22.0
}

application/xml, text/xml

Sample:
<Race9_ElectoralUnitBasicInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CIK.WebSite.Model.WebResult.Race9">
  <AbsenceAndMobileTeamVotes>1</AbsenceAndMobileTeamVotes>
  <ConfirmedVotes>1</ConfirmedVotes>
  <InvalidBlankBallots>6</InvalidBlankBallots>
  <InvalidOthersBallots>7</InvalidOthersBallots>
  <NationalMinoritiesMandates>13</NationalMinoritiesMandates>
  <NumberOfVoters>1</NumberOfVoters>
  <PercentageProcessedPollingStations>10</PercentageProcessedPollingStations>
  <PercentageTotalNoVotes>19</PercentageTotalNoVotes>
  <PercentageTotalVotes>18</PercentageTotalVotes>
  <PostOfficeVotes>1</PostOfficeVotes>
  <ProcessedAbsenceAndMobileTeamVotes>16</ProcessedAbsenceAndMobileTeamVotes>
  <ProcessedConfirmedVotes>17</ProcessedConfirmedVotes>
  <ProcessedInvalidBlankBallots>21</ProcessedInvalidBlankBallots>
  <ProcessedInvalidOthersBallots>22</ProcessedInvalidOthersBallots>
  <ProcessedPollingStations>9</ProcessedPollingStations>
  <ProcessedPostOfficeVotes>15</ProcessedPostOfficeVotes>
  <ProcessedRegularVotes>14</ProcessedRegularVotes>
  <ProcessedValidVotes>20</ProcessedValidVotes>
  <RegularMandates>12</RegularMandates>
  <RegularVotes>1</RegularVotes>
  <TotalInvalidVotes>5</TotalInvalidVotes>
  <TotalMandates>11</TotalMandates>
  <TotalNoVotes>3</TotalNoVotes>
  <TotalPollingStations>8</TotalPollingStations>
  <TotalVotes>2</TotalVotes>
  <ValidVotes>4</ValidVotes>
</Race9_ElectoralUnitBasicInfo>