GET api/LicencingFees

No documentation available.

Response Information

No documentation available.

Response body formats

text/html

Sample:
<div class="input-group">
    <label class="sr-only" for="filter">Filter</label>
    <span class="input-group-addon">Filter</span>
    <input id="filter" type="text" class="form-control" placeholder="Filter..." />
</div>
<table class="hdc-table table default" data-filter="#filter">
    <thead>
        <tr>
            <th data-toggle="true" class="footable-first-column">
                Licence
            </th>
            <th>
                Fee
            </th>
            <th data-hide="phone">
                Category
            </th>
        </tr>
    </thead>
    <tbody>
            <tr>
                <td>
                    sample string 2
                </td>
                <td>
                    sample string 3
                </td>
                <td>
                    sample string 4
                </td>
            </tr>
            <tr>
                <td>
                    sample string 2
                </td>
                <td>
                    sample string 3
                </td>
                <td>
                    sample string 4
                </td>
            </tr>
            <tr>
                <td>
                    sample string 2
                </td>
                <td>
                    sample string 3
                </td>
                <td>
                    sample string 4
                </td>
            </tr>
    </tbody>
    <tfoot class="hide-if-no-paging">
        <tr>
            <td colspan="6">
                <ul class="pagination pagination-centered hide-if-no-paging"></ul>
            </td>
        </tr>
    </tfoot>
</table>


application/json, text/json

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

application/xml, text/xml

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

text/javascript

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