GET api/CouncilTaxPrecept/{id}

This returns a single parish and year

Request Information

Parameters

NameDescriptionAdditional 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 Precepts</h4>
	<hr />
	<dl class="dl-horizontal">
		<dt>
			Town/Parish
		</dt>
		<dd>
			sample string 2
		</dd>
		<dt>
			Precept 2017/18 (£)
		</dt>
		<dd>
			1
		</dd>
		<dt>
			Precept 2018/19 (£)
		</dt>
		<dd>
			1
		</dd>
		<dt>
			Tax Base 2018/19
		</dt>
		<dd>
			1
		</dd>
		<dt>
			Band D (£)
		</dt>
		<dd>
			1
		</dd>
	</dl>
</div>

application/json, text/json

Sample:
{
  "id": 1,
  "parish": "sample string 2",
  "precept_previous_year": 1,
  "precept_current_year": 1,
  "tax_base": 1,
  "band_d": 1.0
}

application/xml, text/xml

Sample:
<Council_Tax_Precept xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HDCAPIModel.Models">
  <ID>1</ID>
  <band_d>1</band_d>
  <parish>sample string 2</parish>
  <precept_current_year>1</precept_current_year>
  <precept_previous_year>1</precept_previous_year>
  <tax_base>1</tax_base>
</Council_Tax_Precept>

text/javascript

Sample:
({"id":1,"parish":"sample string 2","precept_previous_year":1,"precept_current_year":1,"tax_base":1,"band_d":1.0});