GET api/Boiler/Types?manufacture={manufacture}&model={model}&q={q}
Gets a list of boiler types for the specified manufacturer and model, optionally filtered by the specified search query.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
manufacture |
The manufacturer to get the types for. |
string |
Required |
model |
The model to get the types for. |
string |
Required |
q |
The search string (query). |
string |
None. |
Body Parameters
None.
Response Information
Resource Description
The list of types for the specified brand and model.
Collection of TypeModelName | Description | Type | Additional information |
---|---|---|---|
Type | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Type": "sample string 1" }, { "Type": "sample string 1" } ]
text/xml
Sample:
<ArrayOfTypeModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FGO.Services.Models.Boiler"> <TypeModel> <Type>sample string 1</Type> </TypeModel> <TypeModel> <Type>sample string 1</Type> </TypeModel> </ArrayOfTypeModel>