GET v1/qbrs/types

Gets a list of all QBR Types

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

List of QBR Types

IHttpActionResult

None.

Response Formats

application/json, text/json, text/html

Sample:
[
  {
    "QbrTypeID": "sample string 1",
    "Name": "sample string 2"
  },
  {
    "QbrTypeID": "sample string 1",
    "Name": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfQbrTypeModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KAPTA.Domain.ViewModel.v1">
  <QbrTypeModel>
    <Name>sample string 2</Name>
    <QbrTypeID>sample string 1</QbrTypeID>
  </QbrTypeModel>
  <QbrTypeModel>
    <Name>sample string 2</Name>
    <QbrTypeID>sample string 1</QbrTypeID>
  </QbrTypeModel>
</ArrayOfQbrTypeModel>