GET api/ResultsProgress/ElectoralEventID/{ElectoralEventID}/ProvinceID/{ProvinceID}

Returns Seat Calculation Completed, Voting District Results In and Voting District Total for specified Electoral Event ID and Province ID

Request Information

Parameters

NameDescriptionAdditional information
ElectoralEventID
Valid Electoral Event IDs can be obtained by invoking the ElectoralEvent Controller's Get action and passing an ElectoralEventTypeID: api/v1/ElectoralEvent?ElectoralEventTypeID={ElectoralEventTypeID}

Define this parameter in the request URI.

ProvinceID
Valid Province IDs can be obtained by invoking the Delimitation Controller's Get Action and passing an ElectoralEventID: api/v1/Delimitation?ElectoralEventID={ElectoralEventID}

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "VDResultsIn": 1,
  "VDTotal": 2,
  "SeatCalculationCompleted": true
}

application/xml, text/xml

Sample:
<ResultsProgress xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IECService.Models">
  <SeatCalculationCompleted>true</SeatCalculationCompleted>
  <VDResultsIn>1</VDResultsIn>
  <VDTotal>2</VDTotal>
</ResultsProgress>