GET api/Fees/{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>
			Item
		</dt>
		<dd>
			sample string 2
		</dd>
		<dt>
			Fee
		</dt>
		<dd>
			3
		</dd>
        <dt>
            Section
        </dt>
        <dd>
            sample string 4
        </dd>
        <dt>
            Category
        </dt>
        <dd>
            sample string 5
        </dd>
        <dt>
            Keywords
        </dt>
        <dd>
            sample string 6
        </dd>

	</dl>
</div>



application/json, text/json

Sample:
{
  "id": 1,
  "item": "sample string 2",
  "fee1": 3.0,
  "section": "sample string 4",
  "category": "sample string 5",
  "keywords": "sample string 6"
}

application/xml, text/xml

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

text/javascript

Sample:
({"id":1,"item":"sample string 2","fee1":3.0,"section":"sample string 4","category":"sample string 5","keywords":"sample string 6"});