GET api/v1/CouncilorsByEvent?ElectoralEventID={ElectoralEventID}
Returns the ward Councilors for the specified Event
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| ElectoralEventID | The Electoral event |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
{
"Name": "sample string 1",
"ProvinceID": 2,
"Province": "sample string 3",
"MunicipalityID": 4,
"WardID": 5,
"PartyID": 6,
"PartyName": "sample string 7",
"PartyAbbreviation": "sample string 8"
}
application/xml, text/xml
Sample:
<ByElectionWardCouncilor xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IECService.Models"> <MunicipalityID>4</MunicipalityID> <Name>sample string 1</Name> <PartyAbbreviation>sample string 8</PartyAbbreviation> <PartyID>6</PartyID> <PartyName>sample string 7</PartyName> <Province>sample string 3</Province> <ProvinceID>2</ProvinceID> <WardID>5</WardID> </ByElectionWardCouncilor>