GET api/LicencingFees/{id}

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
id
No documentation available.

Define this parameter in the request URI.

Response Information

No documentation available.

Response body formats

text/html

Sample:
<div>
	<h4>Licencing_Fee</h4>
	<hr />
	<dl class="dl-horizontal">
		<dt>
			Licence
		</dt>
		<dd>
			sample string 2
		</dd>
		<dt>
			Fee
		</dt>
		<dd>
			sample string 3
		</dd>
		<dt>
			Category
		</dt>
		<dd>
			sample string 4
		</dd>
	</dl>
</div>



application/json, text/json

Sample:
{
  "id": 1,
  "licence": "sample string 2",
  "fee": "sample string 3",
  "category": "sample string 4"
}

application/xml, text/xml

Sample:
<Licencing_Fee xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HDCAPIModel.Models">
  <Category>sample string 4</Category>
  <Fee>sample string 3</Fee>
  <ID>1</ID>
  <Licence>sample string 2</Licence>
</Licencing_Fee>

text/javascript

Sample:
({"id":1,"licence":"sample string 2","fee":"sample string 3","category":"sample string 4"});