GET api/LicencingFees?field={field}&search={search}&exact={exact}
This returns fees where the specified field contains the specified search text or equals the search text if exact = true.
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
field | The Name of the field to search against |
Define this parameter in the request URI. |
search | The text to search for |
Define this parameter in the request URI. |
exact | Set to true if match must be exact |
Define this parameter in the request URI. |
Response Information
filtered list of licence fees
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"}]);