GET api/CouncilTax/{id}
This returns a single parish and year
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
id | The id of the parish and year |
Define this parameter in the request URI. |
Response Information
single parish and year
Response body formats
text/html
Sample:
<div> <h4>Council_Tax_Band</h4> <hr /> <dl class="dl-horizontal"> <dt> Financial Year </dt> <dd> sample string 2 </dd> <dt> Parish </dt> <dd> sample string 3 </dd> <dt> Band A </dt> <dd> 1 </dd> <dt> Band B </dt> <dd> 1 </dd> <dt> Band C </dt> <dd> 1 </dd> <dt> Band D </dt> <dd> 1 </dd> <dt> Band E </dt> <dd> 1 </dd> <dt> Band F </dt> <dd> 1 </dd> <dt> Band G </dt> <dd> 1 </dd> <dt> Band H </dt> <dd> 1 </dd> </dl> </div>
application/json, text/json
Sample:
{ "id": 1, "financial_Year": "sample string 2", "parish": "sample string 3", "band_A": 1.0, "band_B": 1.0, "band_C": 1.0, "band_D": 1.0, "band_E": 1.0, "band_F": 1.0, "band_G": 1.0, "band_H": 1.0 }
application/xml, text/xml
Sample:
<Council_Tax_Band xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HDCAPIModel.Models"> <Band_A>1</Band_A> <Band_B>1</Band_B> <Band_C>1</Band_C> <Band_D>1</Band_D> <Band_E>1</Band_E> <Band_F>1</Band_F> <Band_G>1</Band_G> <Band_H>1</Band_H> <Financial_Year>sample string 2</Financial_Year> <ID>1</ID> <Parish>sample string 3</Parish> </Council_Tax_Band>
text/javascript
Sample:
({"id":1,"financial_Year":"sample string 2","parish":"sample string 3","band_A":1.0,"band_B":1.0,"band_C":1.0,"band_D":1.0,"band_E":1.0,"band_F":1.0,"band_G":1.0,"band_H":1.0});