GET api/Boiler?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

NameDescriptionTypeAdditional 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 TypeModel
NameDescriptionTypeAdditional 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>